Skip to content

wHyEt/Awtrix2-Docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

70 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Awtrix2-Docker

Official Docker Container for Awtrix2 Host in collaboration with Blueforcer.

The Container is based on the anapsix/alpine-java:8_JDK image.

It has an autoupdate feature witch will get the latest Host from the Awtrix Site on a restart from the Container.

Thx to foorschtbar its now MultiPlatform

Beta Version

if you want to use the beta version set:

-e AWTRIX_BETA=true -e AUTOUPDATE=true

AUTOUPDATE

You can Disable autoupdate bei setting:

-e AUTOUPDATE=false 

Getting Started

docker run --name AwTriX2 -p 7000:7000 -p 7001:7001 -p 5568:5568/udp --restart always -e TZ=Europe/Berlin  whyet/awtrix2:latest 

Docker Compose

Please don't forget to add your host interface in volumes:

version: "3"

services:
  awtrix:
    image: whyet/awtrix2
    restart: unless-stopped
    ports:
      - "7000:7000"
      - "7001:7001"
      - "5568:5568"
   
    volumes:
      - ./data:/data
      - /sys/class/net/<your interface>/address:/data/hostmac
    environment:
      - TZ=Europe/Berlin
      - JAVA_TOOL_OPTIONS="-Duser.language=de -Duser.country=DE"
      - AWTRIX_BETA=false
      - AUTOUPDATE=true

Additional Ports:

-p 80:80 For Amazon Alexa Support you need this Port. If This Port is already used this can be changed in the config file.

For persistent Data add:

-v pwd:/data

Set Language

If you want AWTRIX to automatically display some apps like DayOfTheWeek in your local language/format (e.g. "Sonntag" instead of "Sunday") you can specify this with an eviroment variable.

-e JAVA_TOOL_OPTIONS="-Duser.language=de -Duser.country=DE"

Where de is your two-letter language code. (see ISO 639-2)
And DE is your two-letter country code. (see ISO 3166-1 alpha-2)

Awtrix Premium Users

If you want to use Premium please mount the host interface address to the container with: (works only with beta Version for Stable change to host mode like below)

-v /sys/class/net/<your interface>/address:/data/hostmac

or run the container in host mode:

--network host

Support for Creating Docker Containers ;)

Buy Me A Coffee

About

Official Docker Container for Awtrix2 Host in collaboration with Blueforcer.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published