|
@@ -0,0 +1,16 @@
|
|
|
|
|
+version: "2"
|
|
|
|
|
+services:
|
|
|
|
|
+ awtrix:
|
|
|
|
|
+ restart: always
|
|
|
|
|
+ ports:
|
|
|
|
|
+ - "7000:7000" # Webinterface
|
|
|
|
|
+ - "7001:7001" # AWTRIXController
|
|
|
|
|
+ - "7002:7002" # LiveDraw
|
|
|
|
|
+ container_name: awtrix
|
|
|
|
|
+ image: o0shojo0o/awtrix:latest
|
|
|
|
|
+ environment:
|
|
|
|
|
+ - TZ=Europe/Berlin
|
|
|
|
|
+ volumes:
|
|
|
|
|
+ - /etc/localtime:/etc/localtime:ro
|
|
|
|
|
+ - ./data/plugins:/data/plugins
|
|
|
|
|
+ - ./data/config:/data/config
|