22 lines
461 B
YAML
22 lines
461 B
YAML
db:
|
|
build: db
|
|
volumes:
|
|
- ./volumes/db/var/lib/postgresql/data:/var/lib/postgresql/data
|
|
- /etc/localtime:/etc/localtime:ro
|
|
app:
|
|
build: app
|
|
links:
|
|
- db:pg
|
|
volumes:
|
|
- ./volumes/app/mattermost/config:/mattermost/config:rw
|
|
- ./volumes/app/mattermost/data:/mattermost/data:rw
|
|
- /etc/localtime:/etc/localtime:ro
|
|
web:
|
|
build: web
|
|
ports:
|
|
- "8065:443"
|
|
links:
|
|
- app:platform
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|