mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-19 20:38:35 +00:00
11 lines
199 B
YAML
11 lines
199 B
YAML
version: '2'
|
|
|
|
services:
|
|
db:
|
|
image: nginx:1.16.0
|
|
container_name: compose_test_nginx_2
|
|
command: 'nginx -g "daemon off;"'
|
|
environment:
|
|
NGINX_PORT: 5432
|
|
ports:
|
|
- "5432"
|