Kanboard can run with Docker.
You can use the public image or build your own image from the Dockerfile.
Actually, the Docker image is based on the master branch (development version).
From your kanboard directory run the following command:
docker build -t youruser/kanboard:master .To run your image in background on the port 80:
docker run -d --name kanboard -p 80:80 -t youruser/kanboard:masterThis image is stored on the Docker Hub.
Fetch the image on your machine:
docker pull kanboard/kanboard:masterRun the image:
docker run -d --name kanboard -p 80:80 -t kanboard/kanboard:masterNote: This image is not necessary up to date
You can also save your data outside of the container, on the local machine:
docker run -d --name kanboard -v /your/local/data/folder:/var/www/html/data -p 80:80 -t kanboard/kanboard:master