mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-19 20:38:35 +00:00
10 lines
205 B
YAML
10 lines
205 B
YAML
version: '2'
|
|
|
|
services:
|
|
db:
|
|
image: nginx:1.16.0
|
|
container_name: compose_test_nginx
|
|
command: 'nginx -g "daemon off;"'
|
|
alpine:
|
|
image: alpine:3.7.3
|
|
container_name: compose_test_alpine
|