mirror of
https://github.com/brmlab/brmkan.git
synced 2025-06-07 19:34:00 +02:00
More documentation.
This commit is contained in:
parent
25ea5b14e8
commit
b08249e31e
1 changed files with 33 additions and 11 deletions
|
@ -2,6 +2,39 @@ version: '2'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
|
# 1) Create a dedicated user for Wekan, for example:
|
||||||
|
# sudo useradd -d /home/wekan -m -s /bin/bash wekan
|
||||||
|
# 2) Add this user to the docker group, then logout+login or reboot:
|
||||||
|
# sudo usermod -aG docker wekan
|
||||||
|
# 3) Then login as user wekan.
|
||||||
|
# 4) Create this file /home/wekan/docker-compose.yml with your modifications.
|
||||||
|
# 5a) Running Docker as service, on Systemd like Debian 9, Ubuntu 16.04, CentOS 7:
|
||||||
|
# sudo systemctl enable docker
|
||||||
|
# sudo systemctl start docker
|
||||||
|
# 5b) Running Docker as service, on init.d like Debian 8, Ubuntu 14.04, CentOS 6:
|
||||||
|
# sudo update-rc.d docker defaults
|
||||||
|
# sudo service docker start
|
||||||
|
# 6) For seeing does Wekan work, try this and check with your webbroser:
|
||||||
|
# docker-compose up
|
||||||
|
# 7) Stop Wekan and start Wekan in background:
|
||||||
|
# docker-compose stop
|
||||||
|
# docker-compose up -d
|
||||||
|
# 8) See running Docker containers:
|
||||||
|
# docker ps
|
||||||
|
# 9) See stopped Docker containers:
|
||||||
|
# docker ps -a
|
||||||
|
|
||||||
|
# Upgrading Wekan to new version:
|
||||||
|
# 1) Stop Wekan:
|
||||||
|
# docker-compose stop
|
||||||
|
# 2) Download new version:
|
||||||
|
# docker-compose pull wekan
|
||||||
|
# 3) If you have more networks for VPN etc as described at bottom of
|
||||||
|
# this config, download for them too:
|
||||||
|
# docker-compose pull wekan2
|
||||||
|
# 4) Start Wekan:
|
||||||
|
# docker-compose start
|
||||||
|
|
||||||
wekandb:
|
wekandb:
|
||||||
# All Wekan data is stored in MongoDB. For backup and restore, see:
|
# All Wekan data is stored in MongoDB. For backup and restore, see:
|
||||||
# https://github.com/wekan/wekan/wiki/Export-Docker-Mongo-Data
|
# https://github.com/wekan/wekan/wiki/Export-Docker-Mongo-Data
|
||||||
|
@ -17,17 +50,6 @@ services:
|
||||||
- wekan-db:/data/db
|
- wekan-db:/data/db
|
||||||
- wekan-db-dump:/dump
|
- wekan-db-dump:/dump
|
||||||
|
|
||||||
# Upgrading Wekan to new version:
|
|
||||||
# 1) Stop Wekan:
|
|
||||||
# docker-compose stop
|
|
||||||
# 2) Download new version:
|
|
||||||
# docker-compose pull wekan
|
|
||||||
# 3) If you have more networks for VPN etc as described at bottom of
|
|
||||||
# this config, download for them too:
|
|
||||||
# docker-compose pull wekan2
|
|
||||||
# 4) Start Wekan:
|
|
||||||
# docker-compose start
|
|
||||||
|
|
||||||
wekan:
|
wekan:
|
||||||
# Wekan container only has Node.js and related code,
|
# Wekan container only has Node.js and related code,
|
||||||
# there is no data stored here.
|
# there is no data stored here.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue