gatus/examples/docker-compose-mattermost/docker-compose.yml

25 lines
408 B
YAML
Raw Normal View History

2020-11-14 15:55:37 +01:00
version: "3.8"
2021-01-17 02:36:59 +01:00
2020-11-14 15:55:37 +01:00
services:
2021-01-17 02:36:59 +01:00
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
2020-11-14 15:55:37 +01:00
2021-01-17 02:36:59 +01:00
networks:
default:
driver: bridge