magnetico/docker-compose.yml

25 lines
554 B
YAML
Raw Normal View History

2019-09-18 00:21:30 +00:00
version: "2"
services:
magneticod:
image: boramalper/magneticod
volumes:
2019-09-18 00:21:30 +00:00
- magneticod-data:/root/.local/share/magneticod
- magneticod-config:/root/.config/magneticod
network: host
magneticow:
image: boramalper/magneticow
volumes:
2019-09-18 00:21:30 +00:00
- magneticod-data:/root/.local/share/magneticod
2019-05-19 00:27:10 +00:00
depends_on:
# It doesn't necessarily "depend" on magneticod, but you would probably like to start them at the same time.
- magneticod
ports:
2019-05-19 00:27:10 +00:00
- "8080:8080"
2019-09-18 00:21:30 +00:00
volumes:
magneticod-config:
magneticod-data: