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

24 lines
394 B
YAML
Raw Normal View History

2021-09-11 02:03:51 +02:00
version: "3.9"
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:
2021-09-11 02:03:51 +02:00
- "8080:8080"
2021-01-17 02:36:59 +01:00
volumes:
- ./config:/config
2021-01-17 02:36:59 +01:00
networks:
- default
mattermost:
container_name: mattermost
image: mattermost/mattermost-preview:5.26.0
ports:
2021-09-11 02:03:51 +02:00
- "8065:8065"
2021-01-17 02:36:59 +01:00
networks:
- default
2020-11-14 15:55:37 +01:00
2021-01-17 02:36:59 +01:00
networks:
default:
driver: bridge