compose-action/docker/docker-compose.yml
Razvan ada3c6c7cd
feat: add support for compose flags (#7)
Add support for options (eg: --profile) to be passed to docker-compose.
2022-08-27 15:12:55 +09:00

17 lines
260 B
YAML

version: "3.8"
volumes:
test_volume: {}
services:
helloworld:
image: hello-world
volumes:
- test_volume:/test:Z
helloworld2:
profiles: [profile-1]
image: hello-world
helloworld3:
profiles: [profile-2]
image: hello-world