added healthchecks and gotify
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user