docker-compose/test/docker-compose.yml
2021-04-14 16:17:03 +02:00

17 lines
360 B
YAML

version: '2'
services:
web:
image: nginx:1.16.0
container_name: compose_test_web
command: 'nginx -g "daemon off;"'
ports:
- 80:80
- 443:443
proxy:
image: nginx:1.19.9-alpine
container_name: compose_test_proxy
command: 'nginx -g "daemon off;"'
hello:
image: hello-world
container_name: compose_test_hello