Skip to content
Snippets Groups Projects
Commit 042f4887 authored by Guillaume Damiens's avatar Guillaume Damiens
Browse files

création docker-compose

parent fbc77c19
No related branches found
No related tags found
1 merge request!37Tx services p19 test
version: '2'
services:
wekandb:
image: mongo:4.0.4
container_name: wekan-db
restart: always
command: mongod --smallfiles --oplogSize 128
networks:
- wekan-tier
expose:
- 27017
volumes:
- wekan-db:/data/db
- wekan-db-dump:/dump
wekan:
image: wekanteam/wekan:meteor-1.8
container_name: wekan-app
restart: always
networks:
- wekan-tier
ports:
- 80:8080
environment:
- MONGO_URL=mongodb://wekandb:27017/wekan
- ROOT_URL=http://localhost
depends_on:
- wekandb
volumes:
wekan-db:
driver: local
wekan-db-dump:
driver: local
networks:
wekan-tier:
driver: bridge
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment