magnetico/docker-compose.yml

21 lines
573 B
YAML
Raw Normal View History

2019-09-18 00:21:30 +00:00
version: "2"
services:
magneticod:
image: boramalper/magneticod
volumes:
2020-02-21 11:39:35 +00:00
- ${MAGNETICOD_DATA}:/root/.local/share/magneticod
- ${MAGNETICOD_CONFIG}:/root/.config/magneticod
2020-02-21 09:10:46 +00:00
network_mode: "host"
magneticow:
image: boramalper/magneticow
volumes:
2020-02-21 11:39:35 +00:00
- ${MAGNETICOD_DATA}:/root/.local/share/magneticod
- ${MAGNETICOW_CONFIG}:/root/.config/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"