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

22 lines
460 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:db
volumes:
- ./volumes/app/mattermost/config:/mattermost/config:rw
- ./volumes/app/mattermost/data:/mattermost/data:rw
2015-12-04 10:24:13 +01:00
- /etc/localtime:/etc/localtime:ro
web:
build: web
ports:
2016-01-08 19:29:20 +01:00
- "443:443"
links:
- app:platform
2015-12-04 10:24:13 +01:00
volumes:
- /etc/localtime:/etc/localtime:ro