/docker-quasselcore

docker for quasselcore

Primary LanguageShellGNU Affero General Public License v3.0AGPL-3.0

docker-quasselcore

Build Status

Alpine officially packaged quasselcore in a dockerfile!

This image is daily rebuilt with travis to help ensure security!

Guide

Sample command to run, as root of course:

# Pull and run the docker image with local storage at /srv/docker/quasselcore
# and mounting to port 4242
docker run --detach --hostname `hostname -f` --env COUNTRY='US' \
  --env STATE='California' --env CITY='Los Angeles'--name quasselcore \
  --volume /srv/docker/quasselcore:/var/lib/quassel \
  -p 0.0.0.0:4242:4242/tcp \
  --restart=unless-stopped rtzq0/docker-quasselcore

Alternately, if you have docker-compose you can modify/use the included docker-compose.yml, which will also start the quassel web client

docker-compose up