24 lines
536 B
YAML
24 lines
536 B
YAML
version: "2"
|
|
|
|
services:
|
|
magneticod:
|
|
image: boramalper/magneticod
|
|
volumes:
|
|
- magneticod-data:/root/.local/share/magneticod
|
|
- magneticod-config:/root/.config/magneticod
|
|
|
|
magneticow:
|
|
image: boramalper/magneticow
|
|
volumes:
|
|
- magneticod-data:/root/.local/share/magneticod
|
|
depends_on:
|
|
# It doesn't necessarily "depend" on magneticod, but you would probably like to start them at the same time.
|
|
- magneticod
|
|
ports:
|
|
- "8080:8080"
|
|
|
|
volumes:
|
|
magneticod-config:
|
|
|
|
magneticod-data:
|