Sign inSign up

chimeradev/xibo-docker

By chimeradev

Updated almost 11 years ago

Docker container for the Xibo Digital Signage CMS, Version 1.7.5

Image
6

7.5K

chimeradev/xibo-docker repository overview

Inofficial Docker Image

Environment variables

Pass these environment variables when running the container to modify settings:

Variable NameDescriptionDefault Value
MYSQL_HOSTThe MySQL Hostname/IPlocalhost
MYSQL_PASSA MySQL user "admin" will be created, this is his passwordchangeme
XIBO_ADMIN_PASSA Xibo user "admin" will be created, this is his passwordchangeme
MYSQL_DBNAMEThe name of the database which should be created for Xiboxibo

Running the container

docker run -d -p 80:80 -e XIBO_ADMIN_PASS=secret -e MYSQL_PASS=topsecret chimeradev/xibo

Data Container

It's a best practice to have data separated from the actual server container. Our Xibo image stores its data in the folder /xibo-data/, which can be mapped into a data container:

docker create -v /xibo-data --name xibo-data chimeradev/xibo /bin/true && docker run -d --volumes-from xibo-data --name xibo -p 80:80 -e XIBO_ADMIN_PASS=secret -e MYSQL_PASS=topsecret chimeradev/xibo

Tag summary

Content type

Image

Digest

Size

168 MB

Last updated

almost 11 years ago

docker pull chimeradev/xibo-docker