20 lines
354 B
YAML
20 lines
354 B
YAML
|
|
x-app-config: &app-config
|
|
command: bash
|
|
working_dir: /app
|
|
volumes:
|
|
- ./:/app
|
|
|
|
services:
|
|
|
|
debian:
|
|
<<: *app-config
|
|
image: docker.martin98.com/library/debian:latest
|
|
|
|
ubuntu:
|
|
<<: *app-config
|
|
image: docker.martin98.com/library/ubuntu:latest
|
|
|
|
ubuntu-2204:
|
|
<<: *app-config
|
|
image: docker.martin98.com/library/ubuntu:22.04 |