1
0
mirror of https://github.com/TwiN/gatus.git synced 2026-02-07 12:23:26 +00:00

Fix mattermost docker-compose example

This commit is contained in:
TwinProduction
2021-01-16 20:36:59 -05:00
parent e89bb932ea
commit 6d8fd267de
2 changed files with 33 additions and 12 deletions

View File

@@ -1,13 +1,24 @@
version: "3.8"
services:
gatus:
image: twinproduction/gatus:latest
ports:
- 8080:8080
volumes:
- ./config.yaml:/config/config.yaml
mattermost-preview:
image: mattermost/mattermost-preview:latest
ports:
- 8065:8065
services:
gatus:
container_name: gatus
image: twinproduction/gatus:latest
ports:
- 8080:8080
volumes:
- ./config.yaml:/config/config.yaml
networks:
- default
mattermost:
container_name: mattermost
image: mattermost/mattermost-preview:5.26.0
ports:
- 8065:8065
networks:
- default
networks:
default:
driver: bridge