mirror of
https://github.com/docker/compose.git
synced 2026-07-10 02:11:34 +00:00
14 lines
228 B
YAML
14 lines
228 B
YAML
services:
|
|
frontend:
|
|
image: nginx
|
|
container_name: frontend
|
|
volumes:
|
|
- project-data:/data
|
|
|
|
volumes:
|
|
project-data:
|
|
driver: local
|
|
driver_opts:
|
|
type: none
|
|
o: bind
|
|
device: "${TEST_DIR}"
|