24 lines
260 B
YAML
24 lines
260 B
YAML
|
|
version: "2"
|
|
|
|
volumes:
|
|
data:
|
|
driver: local
|
|
|
|
networks:
|
|
front: {}
|
|
|
|
services:
|
|
web:
|
|
build: .
|
|
networks:
|
|
- front
|
|
- default
|
|
volumes_from:
|
|
- other
|
|
|
|
other:
|
|
image: busybox:latest
|
|
command: top
|
|
volumes:
|
|
- /data
|