mirror of
https://github.com/wekan/wekan.git
synced 2026-02-08 09:24:20 +01:00
.devcontainer now ready for Wekan Development in Docker Container
Check .devcontainer/docker-compose.yml to fit your environment Enter this commands to start Wekan Development: $ cd .devcontainer $ docker-compose build $ docker-compose up -d Visit localhost:3000 or whatever you entered in ROOT_URL Code changes triggers a rebuild / redeploy
This commit is contained in:
parent
6bf6bcb192
commit
5697b89817
4 changed files with 103 additions and 19 deletions
|
|
@ -14,6 +14,7 @@ services:
|
|||
volumes:
|
||||
- wekan-dev-db:/data/db
|
||||
- wekan-dev-db-dump:/dump
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
|
||||
wekan-dev:
|
||||
container_name: wekan-dev-app
|
||||
|
|
@ -35,9 +36,13 @@ services:
|
|||
depends_on:
|
||||
- wekandb-dev
|
||||
volumes:
|
||||
- ..:/app:delegated
|
||||
command:
|
||||
sleep infinity
|
||||
- ../client:/home/wekan/app/client
|
||||
- ../models:/home/wekan/app/models
|
||||
- ../config:/home/wekan/app/config
|
||||
- ../i18n:/home/wekan/app/i18n
|
||||
- ../server:/home/wekan/app/server
|
||||
- ../public:/home/wekan/app/public
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
|
||||
volumes:
|
||||
wekan-dev-db:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue