mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-19 12:28:43 +00:00
17 lines
380 B
YAML
17 lines
380 B
YAML
version: '2'
|
|
|
|
services:
|
|
web:
|
|
image: nginx:1.16.0
|
|
container_name: compose_test_web
|
|
command: 'nginx -g "daemon off;"'
|
|
ports:
|
|
- '0.0.0.0:80:80'
|
|
- '0.0.0.0: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
|