mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-19 04:18:32 +00:00
11 lines
201 B
YAML
11 lines
201 B
YAML
version: '2'
|
|
|
|
services:
|
|
web:
|
|
image: nginx:1.16.0
|
|
container_name: compose_test_web_2
|
|
command: 'nginx -g "daemon off;"'
|
|
environment:
|
|
NGINX_PORT: 8888
|
|
ports:
|
|
- 8888:8888
|