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