mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2026-06-11 06:16:18 +00:00
21 lines
326 B
YAML
21 lines
326 B
YAML
|
|
# https://github.com/TwiN/gatus/blob/master/.examples/docker-compose/docker-compose.yml
|
||
|
|
|
||
|
|
#
|
||
|
|
|
||
|
|
name: gatus
|
||
|
|
|
||
|
|
services:
|
||
|
|
gatus:
|
||
|
|
image: twinproduction/gatus:latest
|
||
|
|
container_name: gatus
|
||
|
|
ports:
|
||
|
|
- 8080:8080
|
||
|
|
volumes:
|
||
|
|
- ./config:/config
|
||
|
|
networks:
|
||
|
|
- proxy
|
||
|
|
|
||
|
|
networks:
|
||
|
|
proxy:
|
||
|
|
external: true
|
||
|
|
|