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/
- Host: GitHub
- URL: https://github.com/docwhat/kanboard-docker
- Owner: docwhat
- License: mit
- Created: 2015-05-05T14:48:40.000Z (about 11 years ago)
- Default Branch: main
- Last Pushed: 2021-02-13T02:10:07.000Z (over 5 years ago)
- Last Synced: 2025-02-15T21:17:54.321Z (over 1 year ago)
- Language: Shell
- Size: 7.81 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 ...