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

21 lines
405 B
YAML
Raw Normal View History

db:
build: db
volumes:
- ./volumes/db/var/lib/postgresql/data:/var/lib/postgresql/data
2015-12-04 10:24:13 +01:00
- /etc/localtime:/etc/localtime:ro
app:
build: app
links:
- db:pg
volumes:
- ./volumes/app/mattermost/config:/mattermost/config:rw
2015-12-04 10:24:13 +01:00
- /etc/localtime:/etc/localtime:ro
web:
build: web
ports:
2015-11-30 07:09:07 +01:00
- "8065:443"
links:
- app:platform
2015-12-04 10:24:13 +01:00
volumes:
- /etc/localtime:/etc/localtime:ro