kompose/client/testdata/docker-compose-profiles.yaml
2023-09-21 22:03:51 +02:00

18 lines
287 B
YAML

version: '3'
services:
backend:
image: dummy:tag
profiles: ['hello', 'world']
ports:
- "80:80"
frontend:
image: dummy:tag
profiles: [ 'hello' ]
ports:
- "80:80"
database:
image: dummy:tag
profiles: [ 'world' ]
ports:
- "80:80"