1
0
Fork 0
mirror of https://github.com/TwiN/gatus.git synced 2024-12-15 17:51:09 +00:00
twin-gatus/.examples/docker-compose-mattermost/docker-compose.yml

24 lines
394 B
YAML
Raw Normal View History

2021-09-11 00:03:51 +00:00
version: "3.9"
2020-11-14 14:55:37 +00:00
services:
2021-01-17 01:36:59 +00:00
gatus:
container_name: gatus
image: twinproduction/gatus:latest
ports:
2021-09-11 00:03:51 +00:00
- "8080:8080"
2021-01-17 01:36:59 +00:00
volumes:
- ./config:/config
2021-01-17 01:36:59 +00:00
networks:
- default
mattermost:
container_name: mattermost
image: mattermost/mattermost-preview:5.26.0
ports:
2021-09-11 00:03:51 +00:00
- "8065:8065"
2021-01-17 01:36:59 +00:00
networks:
- default
2020-11-14 14:55:37 +00:00
2021-01-17 01:36:59 +00:00
networks:
default:
driver: bridge