parent
2a0cf0cb21
commit
1cb127e849
@ -1,6 +1,6 @@
|
|||||||
db:
|
db:
|
||||||
build: db
|
build: db
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./volumes/db/var/lib/postgresql/data:/var/lib/postgresql/data
|
- ./volumes/db/var/lib/postgresql/data:/var/lib/postgresql/data
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
@ -19,7 +19,7 @@ app:
|
|||||||
build: app
|
build: app
|
||||||
links:
|
links:
|
||||||
- db:db
|
- db:db
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./volumes/app/mattermost/config:/mattermost/config:rw
|
- ./volumes/app/mattermost/config:/mattermost/config:rw
|
||||||
- ./volumes/app/mattermost/data:/mattermost/data:rw
|
- ./volumes/app/mattermost/data:/mattermost/data:rw
|
||||||
@ -37,7 +37,7 @@ web:
|
|||||||
- "443:443"
|
- "443:443"
|
||||||
links:
|
links:
|
||||||
- app:app
|
- app:app
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
# This directory must have cert files
|
# This directory must have cert files
|
||||||
- ./volumes/web/cert:/cert:ro
|
- ./volumes/web/cert:/cert:ro
|
||||||
|
@ -4,7 +4,7 @@ services:
|
|||||||
|
|
||||||
db:
|
db:
|
||||||
build: db
|
build: db
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./volumes/db/var/lib/postgresql/data:/var/lib/postgresql/data
|
- ./volumes/db/var/lib/postgresql/data:/var/lib/postgresql/data
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
@ -22,7 +22,7 @@ services:
|
|||||||
|
|
||||||
app:
|
app:
|
||||||
build: app
|
build: app
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./volumes/app/mattermost/config:/mattermost/config:rw
|
- ./volumes/app/mattermost/config:/mattermost/config:rw
|
||||||
- ./volumes/app/mattermost/data:/mattermost/data:rw
|
- ./volumes/app/mattermost/data:/mattermost/data:rw
|
||||||
@ -38,7 +38,7 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
- "443:443"
|
- "443:443"
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
# This directory must have cert files
|
# This directory must have cert files
|
||||||
- ./volumes/web/cert:/cert:ro
|
- ./volumes/web/cert:/cert:ro
|
||||||
|
Reference in New Issue
Block a user