mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-19 04:18:32 +00:00
12 lines
214 B
YAML
12 lines
214 B
YAML
version: '3'
|
|
|
|
services:
|
|
some-service:
|
|
image: nginx:1.19.9-alpine
|
|
command: 'nginx -g "daemon off;"'
|
|
volumes:
|
|
# - ./volume:/mountedvolume
|
|
- db-data:/mountedsecondvolume
|
|
|
|
volumes:
|
|
db-data:
|