15 lines
333 B
YAML
15 lines
333 B
YAML
services:
|
|
myspeed:
|
|
container_name: MySpeed
|
|
image: germannewsmaker/myspeed
|
|
ports:
|
|
- '5216:5216'
|
|
volumes:
|
|
- /opt/Docker-Deployments/MySpeed/data:/myspeed/data
|
|
restart: unless-stopped
|
|
networks:
|
|
- external
|
|
networks:
|
|
external:
|
|
external: true # Tells Compose not to create this network
|