Compare commits

...

12 Commits

Author SHA1 Message Date
Trez.One 490c1988bd Removing Emby in favor of Jellyfin.
Gitea Branch PR, SonarQube Analyze, and Merge Workflow / Check and Create PR (push) Has been cancelled
Gitea Branch PR, SonarQube Analyze, and Merge Workflow / Docker Compose Test (push) Has been cancelled
Gitea Branch PR, SonarQube Analyze, and Merge Workflow / PR Merge (push) Has been cancelled
2024-12-29 16:00:27 -05:00
Trez.One e8d197a479 Fixing Jellyfin link. 2024-12-29 13:11:57 -05:00
Trez.One 45eabbd565 Removing Homepage stuff from Synapse. 2024-12-29 13:07:29 -05:00
Trez.One 728de4162a Changing SWAG port for Synapse. 2024-12-29 12:56:58 -05:00
Trez.One eed4dc3ac7 Changing SWAG port for Synapse. 2024-12-29 12:44:58 -05:00
Trez.One 1c456c7b11 Changing SWAG port for Synapse. 2024-12-29 12:40:08 -05:00
Trez.One 52c463f83e Adding container name for synapse-db. 2024-12-29 12:01:52 -05:00
gitea-sonarqube-bot 9f15cd81d6 Auto Merge
Merged by Trez.One
2024-12-29 11:55:28 -05:00
Trez.One 7c4f087de1 Synapse PG DB fixes.
Gitea Branch PR, SonarQube Analyze, and Merge Workflow / Check and Create PR (push) Has been cancelled
Gitea Branch PR, SonarQube Analyze, and Merge Workflow / Docker Compose Test (push) Has been cancelled
Gitea Branch PR, SonarQube Analyze, and Merge Workflow / PR Merge (push) Has been cancelled
2024-12-29 11:54:04 -05:00
gitea-sonarqube-bot ae108d6e2b Auto Merge
Merged by Trez.One
2024-12-29 11:40:41 -05:00
gitea-sonarqube-bot 485220f1ff Auto Merge
Merged by Trez.One
2024-12-29 11:12:17 -05:00
gitea-sonarqube-bot 40969e9ab1 Auto Merge
Merged by Trez.One
2024-12-29 11:00:20 -05:00
+11 -65
View File
@@ -977,62 +977,6 @@ services:
source: /home/charish/.config/appdata
target: /source
type: bind
emby:
container_name: emby
environment:
- PGID=1000
- PUID=1000
- TZ=America/New_York
- DOCKER_MODS=ghcr.io/themepark-dev/theme.park:emby
hostname: Rinoa
image: emby/embyserver
labels:
- homepage.group=Media Library
- homepage.name=Emby
- homepage.icon=emby.png
- homepage.href=http://emby.${MY_TLD}
- homepage.description=Movie/TV Streaming
- homepage.widget.type=emby
- homepage.widget.url=http://emby:8096
- homepage.widget.key=${EMBY_HOMEPAGE_API_KEY}
- homepage.widget.enableBlocks=true
- homepage.widget.enableNowPlaying=true
- swag=enable
- swag.uptime-kuma.enabled=true
networks:
default: null
ports:
- mode: ingress
protocol: tcp
published: "8096"
target: 8096
- mode: ingress
protocol: tcp
published: "8920"
target: 8920
restart: unless-stopped
volumes:
- bind:
create_host_path: true
read_only: true
source: /etc/localtime
target: /etc/localtime
type: bind
- bind:
create_host_path: true
source: ${DOCKER_VOLUME_CONFIG}/emby
target: /config
type: bind
- bind:
create_host_path: true
source: /rinoa-storage
target: /storage
type: bind
- bind:
create_host_path: true
source: /tmp
target: /transcode
type: bind
fastenhealth:
container_name: fastenhealth
image: ghcr.io/fastenhealth/fasten-onprem:main
@@ -2005,7 +1949,7 @@ services:
homepage.group: Media Library
homepage.name: Jellyfin
homepage.icon: jellyfin.svg
homepage.href: http://jf.${MY_TLD}
homepage.href: https://jf.${MY_TLD}
homepage.description: Movie/TV Streaming
homepage.widget.type: jellyfin
homepage.widget.url: http://jellyfin:8096
@@ -4560,30 +4504,32 @@ services:
- synapse-db
environment:
SYNAPSE_CONFIG_PATH: /data/homeserver.yaml
PUID: 1000
PGID: 1000
image: docker.io/matrixdotorg/synapse:latest
labels:
homepage.group: Social
homepage.name: Matrix-Synapse
homepage.href: https://matrix.${MY_TLD}
homepage.icon: matrix-synapse.svg
homepage.description: Synapse/Matrix server
swag: enable
swag_proto: http
swag_url: matrix.${MY_TLD}
swag_port: 8448
swag_port: 8008
swag.uptime-kuma.enabled: true
swag.uptime-kuma.monitor.url: https://matrix.${MY_TLD}
ports:
- 19345:8008
- 8448:8448/tcp
restart: unless-stopped
volumes:
- ${DOCKER_VOLUME_CONFIG}/synapse/:/data
synapse-db:
image: docker.io/postgres:16-alpine
container_name: synapse-db
image: postgres:16-alpine
environment:
POSTGRES_USER: synapse
POSTGRES_PASSWORD: ${SYNAPSE_POSTGRES_PASSWORD}
POSTGRES_INITDB_ARGS: '--encoding: UTF-8 --lc-collate: C --lc-ctype: C'
POSTGRES_INITDB_ARGS: "--encoding=UTF-8 --lc-collate=C --lc-ctype=C"
expose:
- 5432
restart: unless-stopped
volumes:
- synapse-db:/var/lib/postgresql/data
tandoor: