This repository has been archived on 2021-08-31. You can view files and clone it, but cannot push or open issues or pull requests.
mattermost/docker-compose.yml

17 lines
277 B
YAML
Raw Normal View History

db:
build: db
volumes:
- ./volumes/db/var/lib/postgresql/data:/var/lib/postgresql/data
app:
build: app
links:
- db:pg
volumes:
- ./volumes/app/mattermost/config:/mattermost/config:rw
web:
build: web
ports:
2015-11-30 07:09:07 +01:00
- "8065:443"
links:
- app:platform