mirror of
https://github.com/docker/compose.git
synced 2025-08-15 22:58:12 +02:00
15 lines
228 B
YAML
15 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}"
|