added glance labels to a buch of apps

This commit is contained in:
Phil 2025-03-14 14:52:01 -06:00
parent 37f47a4cf3
commit 579fb581c6
6 changed files with 49 additions and 2 deletions

View File

@ -11,6 +11,13 @@ services:
- plugin:/plugin - plugin:/plugin
- attach:/attach - attach:/attach
image: caronc/apprise:latest image: caronc/apprise:latest
labels:
glance.name: Apprise
glance.icon: si:imessage
glance.url: https://auth.thesatelliteoflove.com/
glance.description: Apprise api server
glance.id: apprise
volumes: volumes:
config: config:
attach: attach:

View File

@ -12,6 +12,11 @@ services:
- ghost:/var/lib/ghost/content - ghost:/var/lib/ghost/content
extra_hosts: extra_hosts:
- 'phlog.thesatelliteoflove.com:172.20.0.5' - 'phlog.thesatelliteoflove.com:172.20.0.5'
labels:
glance.name: Ghost
glance.icon: si:ghost
glance.url: https://phlog.thesatelliteoflove.com/
glance.description: Photo Blog
volumes: volumes:
ghost: ghost:

View File

@ -14,6 +14,12 @@ services:
- GITEA__mailer__USER=resend - GITEA__mailer__USER=resend
- GITEA__mailer__PASSWD={{ resend_key }} - GITEA__mailer__PASSWD={{ resend_key }}
restart: unless-stopped restart: unless-stopped
labels:
glance.name: Gitea
glance.icon: si:gitea
glance.url: https://git.thesatelliteoflove.com/
glance.description: Code repo
glance.id: gitea
volumes: volumes:
- gitea:/data - gitea:/data
- /etc/timezone:/etc/timezone:ro - /etc/timezone:/etc/timezone:ro
@ -36,6 +42,9 @@ services:
extra_hosts: extra_hosts:
- 'auth.thesatelliteoflove.com:172.20.0.5' - 'auth.thesatelliteoflove.com:172.20.0.5'
- 'git.thesatelliteoflove.com:172.20.0.5' - 'git.thesatelliteoflove.com:172.20.0.5'
labels:
glance.parent: gitea
glance.name: Worker
volumes: volumes:
- ./runner-config.yaml:/config.yaml - ./runner-config.yaml:/config.yaml
- ./data:/data - ./data:/data

View File

@ -10,6 +10,12 @@ services:
extra_hosts: extra_hosts:
- 'thesatelliteoflove.com:172.20.0.5' - 'thesatelliteoflove.com:172.20.0.5'
- 'watcher.thesatelliteoflove.com:172.20.0.5' - 'watcher.thesatelliteoflove.com:172.20.0.5'
labels:
glance.name: Glance
glance.icon: si:homepage
glance.url: https://home.thesatelliteoflove.com/
glance.description: Homepage app
glance.id: glance
networks: networks:
default: default:

View File

@ -1,6 +1,6 @@
services: services:
gotosocial: gotosocial:
image: superseriousbusiness/gotosocial:0.18.0 image: superseriousbusiness/gotosocial:0.18.2
container_name: gotosocial container_name: gotosocial
user: 1000:1000 user: 1000:1000
extra_hosts: extra_hosts:
@ -30,11 +30,19 @@ services:
- gotosocial:/gotosocial/storage - gotosocial:/gotosocial/storage
restart: "always" restart: "always"
labels: labels:
- docker-volume-backup.stop-during-backup=true docker-volume-backup.stop-during-backup: true
glance.name: GoToSocial
glance.icon: si:mastodon
glance.url: https://social.thesatelliteoflove.com/
glance.description: Fediverse server
glance.id: gotosocial
backup: backup:
image: offen/docker-volume-backup:v2 image: offen/docker-volume-backup:v2
restart: always restart: always
labels:
glance.parent: gotosocial
glance.name: Backup
environment: environment:
BACKUP_FILENAME: backup-gts-%Y-%m-%dT%H-%M-%S.tar.gz BACKUP_FILENAME: backup-gts-%Y-%m-%dT%H-%M-%S.tar.gz
BACKUP_LATEST_SYMLINK: backup-latest.tar.gz BACKUP_LATEST_SYMLINK: backup-latest.tar.gz

View File

@ -8,6 +8,12 @@ services:
depends_on: depends_on:
- mongo - mongo
- keydb - keydb
labels:
glance.name: Heyform
glance.icon: si:googleforms
glance.url: https://forms.nerder.land/
glance.description: Forms server
glance.id: heyform
environment: environment:
- APP_HOMEPAGE_URL=http://forms.nerder.land - APP_HOMEPAGE_URL=http://forms.nerder.land
- SESSION_KEY={{ heyform_session_key }} - SESSION_KEY={{ heyform_session_key }}
@ -25,6 +31,9 @@ services:
mongo: mongo:
image: percona/percona-server-mongodb:4.4 image: percona/percona-server-mongodb:4.4
restart: always restart: always
labels:
glance.parent: heyform
glance.name: MongoDB
volumes: volumes:
# Persist MongoDB data # Persist MongoDB data
- database:/data/db - database:/data/db
@ -33,6 +42,9 @@ services:
image: eqalpha/keydb:latest image: eqalpha/keydb:latest
restart: always restart: always
command: keydb-server --appendonly yes command: keydb-server --appendonly yes
labels:
glance.parent: heyform
glance.name: KeyDB
volumes: volumes:
# Persist KeyDB data # Persist KeyDB data
- keydb:/data - keydb:/data