Skip to content
This repository has been archived by the owner on May 15, 2019. It is now read-only.

Docker image

Maxence PAPILLON edited this page Jun 29, 2017 · 2 revisions

TeamLogger can be easily deployed with Docker and linked with other containers like postgres.

Get the docker image

At this state of development, you can only build the image from sources :

docker build -t teamlogger .

This command will create a new image named teamlogger.

Run the container

The container can be started without any configuration, In this case:

  • The database will be stored locally with SQLite ;
  • No LDAP server will be used, users will be stored in database ;
  • No email will be sent.

To run the container, use the following command:

docker run -e APP_SECRET=YourSecretKey -p :8000 teamlogger

Create a super-user

By default, the container has no super-user. You can create a new admin with this command :

docker exec -it <container-name> ./manage.py createsuperuser

Next step: Available settings for container

TeamLogger

Getting started with docker

Configuration

Clone this wiki locally