From a42640f38e5cbb188c370212f98294e55e54efef Mon Sep 17 00:00:00 2001 From: Braintelligence Date: Fri, 14 Apr 2017 21:20:38 +0200 Subject: [PATCH] Created Rancher + Rancher Active Proxy + Wekan/MongoDB Docker (markdown) --- ...her-Active-Proxy---Wekan-MongoDB-Docker.md | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Rancher---Rancher-Active-Proxy---Wekan-MongoDB-Docker.md diff --git a/Rancher---Rancher-Active-Proxy---Wekan-MongoDB-Docker.md b/Rancher---Rancher-Active-Proxy---Wekan-MongoDB-Docker.md new file mode 100644 index 0000000..aadbde0 --- /dev/null +++ b/Rancher---Rancher-Active-Proxy---Wekan-MongoDB-Docker.md @@ -0,0 +1,27 @@ +You can read up how to set up Rancher on a host together with Rancher Active Proxy and a Wekan/MongoDB Docker Stack. + +This way you have Wekan running on a rancher host with automatic letsencrypt retrieval/renewal and proxying to a domain of your choice. + +Here's how to set up Rancher + Rancher Active Proxy: +https://github.com/adi90x/rancher-active-proxy/issues/21 + +Alter the wekan service in the docker-compose like this: +``` + wekan: + image: wekanteam/wekan:meteor-1.4 + container_name: whatever-you-like + restart: always + ports: + - 80 + labels: + - io.rancher.container.pull_image=always + - rap.port=80 + - rap.host=your.domain.com + - rap.le_host=your.domain.com + - rap.le_email=your@mail.com + environment: + - MONGO_URL=mongodb://wekandb:27017/wekan + - ROOT_URL=https://your.domain.com + depends_on: + - wekandb +``` \ No newline at end of file