added healthchecks and gotify

This commit is contained in:
2023-08-08 13:37:20 -05:00
parent 1793232cb0
commit b65e128f33
2 changed files with 61 additions and 0 deletions
+32
View File
@@ -44,6 +44,16 @@ services:
- ${DOCKERCONFIGS}/freshrss/db/data:/var/lib/postgresql/data
- /etc/localtime:/etc/localtime:ro
gotify:
container_name: gotify
image: gotify/server
environment:
- GOTIFY_DEFAULTUSER_PASS=ArTjhptrA6CTCnWH8DA5sq
ports:
- 8001:80
volumes:
- ${DOCKERCONFIGS}/gotify/data:/app/data
hbbr:
container_name: hbbr
image: rustdesk/rustdesk-server:latest
@@ -70,6 +80,28 @@ services:
volumes:
- ${DOCKERCONFIGS}/rustdesk/hbbs:/root
healthchecks:
container_name: healthchecks
image: healthchecks/healthchecks:v2.10
env_file:
- .env
command: bash -c 'while !</dev/tcp/healthchecks-db/5432; do sleep 1; done; uwsgi /opt/healthchecks/docker/uwsgi.ini'
depends_on:
- healthchecks-db
ports:
- 8000:8000
restart: always
healthchecks-db:
container_name: healthchecks-db
image: postgres:12
environment:
- POSTGRES_DB=$DB_NAME
- POSTGRES_PASSWORD=$DB_PASSWORD
restart: always
volumes:
- ${DOCKERCONFIGS}/healthchecks/data:/var/lib/postgresql/data
kutt:
container_name: kutt
image: kutt/kutt:latest