An open API service indexing awesome lists of open source software.

https://github.com/docwhat/kanboard-docker

Kanboard Docker container: http://kanboard.net/
https://github.com/docwhat/kanboard-docker

Last synced: about 1 year ago
JSON representation

Kanboard Docker container: http://kanboard.net/

Awesome Lists containing this project

README

          

Kanboard Docker Container
=========================

This is a docker container for running [Kanboard](http://kanboard.net).

This container is built automatically and made available on [docker.com's
registry](https://registry.hub.docker.com/u/docwhat/kanboard/).

You can get it via:

docker pull docwhat/kanboard

The default user and password are both: `admin`

Configuration
-------------

The `config.php` is generated from environment variables beginning with
`KANBOARD_`.

Example:

docker run ... --env=KANBOARD_DEBUG=true ...

Would generate the `config.php` line:

define('DEBUG', true);

Kanboard CLI
------------

The `./kanboard` command line tool can be accessed by just passing arguments to
the docker container.

To see all commands, for example:

docker run --rm --env-file=./myconfig.env docwhat/kanboard list

Linking to mysql or postgres
----------------------------

I haven't tested the MySQL/Maria and Postgres databases yet, but I added the
host/port linking for the default MySQL and Postgres ports.

Link the database as `db` to have this work. Example:

docker run ... --link=my-db-container:db ...