From 5a093b84c194b26f17e30283bce575a30859dfcf Mon Sep 17 00:00:00 2001 From: Clifton Palmer Date: Tue, 31 Oct 2023 15:35:50 -0500 Subject: [PATCH 1/1] Initial version of kanboard --- docker-compose.yml | 19 +++++++++++++++++++ readme.md | 1 + 2 files changed, 20 insertions(+) create mode 100644 docker-compose.yml create mode 100644 readme.md diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..d6c47ba --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,19 @@ +version: '3' +services: + kanboard: + image: kanboard/kanboard:v1.2.26 + volumes: + - kanboard_data:/var/www/app/data + - kanboard_plugins:/var/www/app/plugins + - kanboard_ssl:/etc/nginx/ssl +volumes: + kanboard_data: + driver: local + driver_opts: + o: bind + type: none + device: /mnt/kanboard_data + kanboard_plugins: + driver: local + kanboard_ssl: + driver: local diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..14ab4be --- /dev/null +++ b/readme.md @@ -0,0 +1 @@ +Kanboard for my projects -- 2.47.2