mirror of
https://github.com/docker/compose.git
synced 2026-07-10 10:14:13 +00:00
15 lines
No EOL
233 B
YAML
15 lines
No EOL
233 B
YAML
services:
|
|
foo:
|
|
container_name: foo_c
|
|
profiles: [ test ]
|
|
image: alpine
|
|
depends_on: [ db ]
|
|
|
|
bar:
|
|
container_name: bar_c
|
|
profiles: [ test ]
|
|
image: alpine
|
|
|
|
db:
|
|
container_name: db_c
|
|
image: alpine |