You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
444 B
24 lines
444 B
version: '3.8'
|
|
|
|
services:
|
|
magicmirror:
|
|
container_name: mm
|
|
image: karsten13/magicmirror:latest
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./mounts/config:/opt/magic_mirror/config
|
|
- ./mounts/modules:/opt/magic_mirror/modules
|
|
- ./mounts/css:/opt/magic_mirror/css
|
|
restart: unless-stopped
|
|
command:
|
|
- npm
|
|
- run
|
|
- server
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
|
|
|