mirror of https://github.com/docker/compose.git
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}"
|