Kanboard can run with Docker.
There is a Dockerfile in the repository to build your own container.
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:masterYou 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