mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
version: '3.7'
|
|
|
|
services:
|
|
|
|
wekandb-dev:
|
|
image: mongo:4.0.11
|
|
container_name: wekan-dev-db
|
|
restart: unless-stopped
|
|
command: mongod --smallfiles --oplogSize 128
|
|
networks:
|
|
- wekan-dev-tier
|
|
expose:
|
|
- 27017
|
|
volumes:
|
|
- wekan-dev-db:/data/db
|
|
- wekan-dev-db-dump:/dump
|
|
|
|
wekan-dev:
|
|
container_name: wekan-dev-app
|
|
restart: always
|
|
networks:
|
|
- wekan-dev-tier
|
|
build:
|
|
context: ..
|
|
dockerfile: .devcontainer/Dockerfile
|
|
ports:
|
|
- 3000:3000
|
|
- 9229:9229
|
|
environment:
|
|
- MONGO_URL=mongodb://wekandb-dev:27017/wekan
|
|
- ROOT_URL=http://localhost:3000
|
|
#- MAIL_URL=smtp://user:pass@mailserver.example.com:25/
|
|
- MAIL_URL=smtp://<mail_url>:25/?ignoreTLS=true&tls={rejectUnauthorized:false}
|
|
- MAIL_FROM=Wekan Notifications <noreply.wekan@mydomain.com>
|
|
- WITH_API=true
|
|
- RICHER_CARD_COMMENT_EDITOR=true
|
|
- BROWSER_POLICY_ENABLED=true
|
|
depends_on:
|
|
- wekandb-dev
|
|
volumes:
|
|
- ..:/app:delegated
|
|
command:
|
|
sleep infinity
|
|
|
|
volumes:
|
|
wekan-dev-db:
|
|
driver: local
|
|
wekan-dev-db-dump:
|
|
driver: local
|
|
|
|
networks:
|
|
wekan-dev-tier:
|
|
driver: bridge
|
|
|