Compare commits

...

3 commits

Author SHA1 Message Date
405cd3099d ⬆️ Update gotify/server-arm7 Docker tag to v2.6.1
All checks were successful
Lint on PR / Lint YAML files (pull_request) Successful in 9s
Deploy to Hosts / deploy (pull_request) Successful in 53s
2024-11-16 10:01:43 +00:00
af5d604d9e add minio 2024-11-15 20:31:19 -05:00
b1c35bb91c ⬆️ Update ghcr.io/linuxserver/sonarr Docker digest to a30d870
All checks were successful
Lint on PR / Lint YAML files (pull_request) Successful in 13s
Deploy to Hosts / deploy (pull_request) Successful in 1m6s
2024-11-16 00:01:39 +00:00
3 changed files with 15 additions and 2 deletions

View file

@ -38,7 +38,7 @@ services:
- /home/ubuntu/forgejo/mysql:/var/lib/mysql - /home/ubuntu/forgejo/mysql:/var/lib/mysql
gotify: gotify:
image: gotify/server-arm7:2.5.0 image: gotify/server-arm7:2.6.1
container_name: gotify container_name: gotify
ports: ports:
- 9008:80 - 9008:80

View file

@ -57,7 +57,7 @@ services:
- PGID=1000 - PGID=1000
sonarr: sonarr:
image: ghcr.io/linuxserver/sonarr@sha256:c0281bd62b9a75f088fa4a09e5f8776431921883766633cb5e5fbd5a74761155 image: ghcr.io/linuxserver/sonarr@sha256:a30d870ae503e617e84909367c8f19096567ef60834fa8d81d86d17a13e50d1a
container_name: sonarr container_name: sonarr
ports: ports:
- "8989:8989" - "8989:8989"

View file

@ -12,3 +12,16 @@ services:
- 3000:3000 - 3000:3000
- 443:443 - 443:443
restart: unless-stopped restart: unless-stopped
minio:
command: server /data --console-address ":9001"
image: minio/minio@sha256:ac591851803a79aee64bc37f66d77c56b0a4b6e12d9e5356380f4105510f2332
environment:
- MINIO_ROOT_PASSWORD=$MINIO_ROOT_PASSWORD
- MINIO_ROOT_USER=mafyuh
volumes:
- /docker/appdata/minio/data:/data
container_name: minio
ports:
- 9001:9001
- 9000:9000