b7b44e6ff6
Now users should create a symbolic link to docker-compose-ssl.yml if they want to enable SSL or docker-compose-nossl.yml if not. Rewrite README to describe this rule. This fixes https://github.com/mattermost/mattermost-docker/issues/5.
16 lines
362 B
YAML
16 lines
362 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:db
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ./volumes/app/mattermost/config:/mattermost/config:rw
|
|
- ./volumes/app/mattermost/data:/mattermost/data:rw
|
|
- /etc/localtime:/etc/localtime:ro
|