mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-22 07:53:38 +01:00
24 lines
411 B
YAML
24 lines
411 B
YAML
version: "3.9"
|
|
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
|