29 lines
583 B
Django/Jinja
29 lines
583 B
Django/Jinja
version: '3'
|
|
|
|
services:
|
|
uptime-kuma:
|
|
container_name: uptime-kuma
|
|
networks:
|
|
- uptime
|
|
image: louislam/uptime-kuma:1
|
|
volumes:
|
|
- ./data:/app/data
|
|
- /etc/roots.pem:/roots.pem
|
|
ports:
|
|
- 127.0.0.1:9922:3001
|
|
dns:
|
|
- {{ nameserver_ip }}
|
|
restart: unless-stopped
|
|
environment:
|
|
- NODE_EXTRA_CA_CERTS=/roots.pem
|
|
uptime-plugins:
|
|
container_name: uptime-plugins
|
|
networks:
|
|
- uptime
|
|
image: git.simponic.xyz/simponic/uptime:arm
|
|
restart: unless-stopped
|
|
ports:
|
|
- 127.0.0.1:9923:3000
|
|
networks:
|
|
uptime:
|