Compare commits

..

7 Commits

Author SHA1 Message Date
Trez.One 5e58b9526e Homepage labels for 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 11:38:42 -05:00
Trez.One c49666bd03 SWAG labels for Jellyfin. 2024-12-29 11:11:02 -05:00
Trez.One 85238b9f78 Adding Jellyfin. 2024-12-29 10:54:54 -05:00
Trez.One 17312723fd Removing Sonar properties file for now. 2024-12-27 18:52:25 -05:00
Trez.One 07d50a36d6 Removing Sonar properties file for now. 2024-12-27 18:51:53 -05:00
Trez.One 95b4f5fcc7 Group label change for Vault. 2024-12-27 18:07:45 -05:00
gitea-sonarqube-bot 2ddf078cdd Auto Merge
Merged by Trez.One
2024-12-27 18:01:15 -05:00
2 changed files with 71 additions and 118 deletions
+71 -116
View File
@@ -1996,6 +1996,42 @@ services:
published: "8104"
target: 80
restart: unless-stopped
jellyfin:
container_name: jellyfin
environment:
JELLYFIN_PublishedServerUrl: https://jf.trez.wtf
image: jellyfin/jellyfin
labels:
homepage.group: Media Library
homepage.name: Jellyfin
homepage.icon: jellyfin.svg
homepage.href: http://jf.${MY_TLD}
homepage.description: Movie/TV Streaming
homepage.widget.type: jellyfin
homepage.widget.url: http://jellyfin:8096
homepage.widget.key: ${JELLYFIN_API_KEY}
homepage.widget.enableBlocks: true
homepage.widget.enableNowPlaying: true
homepage.widget.enableUser: true
homepage.widget.showEpisodeNumber: true
homepage.widget.expandOneStreamToTwoRows: false
swag: enable
swag_url: jf.${MY_TLD}
swag_port: 8096
swag_proto: http
swag.uptime-kuma.enabled: true
ports:
- 8487:8096
- 7359:7359
- 1900:1900
restart: unless-stopped
volumes:
- ${DOCKER_VOLUME_CONFIG}/jellyfin:/config
- ${DOCKER_VOLUME_CONFIG}/jellyfin/cache:/cache
- ${DOCKER_VOLUME_STORAGE}/TV_Shows:/storage/tv
- ${DOCKER_VOLUME_STORAGE}/Movies:/storage/movies
- /etc/localtime:/etc/localtime
- /usr/share/fonts:/usr/local/share/fonts/custom
jitsi-etherpad:
container_name: jitsi-etherpad
environment:
@@ -3001,119 +3037,6 @@ services:
type: bind
bind:
create_host_path: true
mattermost:
container_name: mattermost
depends_on:
mattermost-db:
condition: service_started
required: true
environment:
MM_EMAILSETTINGS_ENABLESMTPAUTH: true
MM_EMAILSETTINGS_SMTPPASSWORD: ${POSTAL_SMTP_AUTH_PASSWORD}
MM_EMAILSETTINGS_SMTPPORT: 25
MM_EMAILSETTINGS_SMTPSERVER: postal-smtp
MM_EMAILSETTINGS_SMTPUSERNAME: ${POSTAL_SMTP_AUTH_USER}
MM_FILESETTINGS_AMAZONS3ACCESSKEYID: ${MATTERMOST_AWS_S3_ACCESSKEY}
MM_FILESETTINGS_AMAZONS3BUCKET: mattermost
MM_FILESETTINGS_AMAZONS3ENDPOINT: minio:9000
MM_FILESETTINGS_AMAZONS3REGION: us-east-fh-pln
MM_FILESETTINGS_AMAZONS3SECRETACCESSKEY: ${MATTERMOST_AWS_S3_SECRETKEY}
MM_FILESETTINGS_AMAZONS3SSL: false
MM_FILESETTINGS_ARCHIVERECURSION: true
MM_FILESETTINGS_DRIVERNAME: amazons3
MM_FILESETTINGS_MAXFILESIZE: 104857600
MM_LOGSETTINGS_CONSOLELEVEL: info
MM_LOGSETTINGS_ENABLECOLOR: true
MM_METRICSSETTINGS_ENABLE: true
MM_PLUGINSETTINGS_ENABLEUPLOADS: true
MM_SERVICESETTINGS_FORWARD80TO443: false
MM_SERVICESETTINGS_LISTENADDRESS: :8065
MM_SERVICESETTINGS_SITEURL: https://mm.${MY_TLD}
MM_SQLSETTINGS_DATASOURCE: ${MATTERMOST_POSTGRES_CONNECTION_URI}
MM_SQLSETTINGS_DRIVERNAME: postgres
TZ: ${TZ}
expose:
- 8067
image: mattermost/mattermost-team-edition:latest
labels:
- homepage.group=Social
- homepage.name=Mattermost
- homepage.href=https://mm.${MY_TLD}
- homepage.icon=mattermost.svg
- homepage.description=Team collaboration and technical workflows (Slack alternative)
- swag=enable
- swag_proto=http
- swag_port=8065
- swag_url=mm.${MY_TLD}
- swag.uptime-kuma.enabled=true
- swag.uptime-kuma.monitor.url=https://mm.${MY_TLD}
networks:
default: null
pids_limit: 200
ports:
- mode: ingress
protocol: tcp
published: "8065"
target: 8065
restart: unless-stopped
security_opt:
- no-new-privileges:true
tmpfs:
- /tmp
volumes:
- source: ${DOCKER_VOLUME_CONFIG}/mattermost/config
target: /mattermost/config
type: bind
bind:
create_host_path: true
- source: ${DOCKER_VOLUME_CONFIG}/mattermost/data
target: /mattermost/data
type: bind
bind:
create_host_path: true
- source: ${DOCKER_VOLUME_CONFIG}/mattermost/logs
target: /mattermost/logs
type: bind
bind:
create_host_path: true
- source: ${DOCKER_VOLUME_CONFIG}/mattermost/plugins
target: /mattermost/plugins
type: bind
bind:
create_host_path: true
- source: ${DOCKER_VOLUME_CONFIG}/mattermost/client/plugins
target: /mattermost/client/plugins
type: bind
bind:
create_host_path: true
- source: ${DOCKER_VOLUME_CONFIG}/mattermost/bleve-indexes
target: /mattermost/bleve-indexes
type: bind
bind:
create_host_path: true
mattermost-db:
container_name: mattermost-db
environment:
- TZ=${TZ}
- POSTGRES_DB=mattermost
- POSTGRES_USER=mattermost
- POSTGRES_PASSWORD=${MATTERMOST_POSTGRES_PASSWORD}
expose:
- 5432
image: postgres:16-alpine
networks:
default: null
restart: unless-stopped
security_opt:
- no-new-privileges=true
tmpfs:
- /tmp
- /var/run/postgresql
volumes:
- source: mattermost-postgres
target: /var/lib/postgresql/data
type: volume
volume: {}
meshcentral:
container_name: meshcentral
image: ghcr.io/ylianst/meshcentral:master
@@ -4631,6 +4554,38 @@ services:
source: /var/run/docker.sock
target: /var/run/docker.sock
type: bind
synapse:
container_name: synapse
depends_on:
- synapse-db
environment:
SYNAPSE_CONFIG_PATH: /data/homeserver.yaml
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.uptime-kuma.enabled: true
swag.uptime-kuma.monitor.url: https://matrix.${MY_TLD}
ports:
- 8448:8448/tcp
restart: unless-stopped
volumes:
- ${DOCKER_VOLUME_CONFIG}/synapse/:/data
synapse-db:
image: docker.io/postgres:16-alpine
environment:
POSTGRES_USER: synapse
POSTGRES_PASSWORD: ${SYNAPSE_POSTGRES_PASSWORD}
POSTGRES_INITDB_ARGS: '--encoding: UTF-8 --lc-collate: C --lc-ctype: C'
volumes:
- synapse-db:/var/lib/postgresql/data
tandoor:
container_name: tandoor-recipes
depends_on:
@@ -6056,7 +6011,7 @@ services:
- AWS_SECRET_ACCESS_KEY=${VAULT_HASHICORP_AWS_SECRET_ACCESS_KEY}
image: hashicorp/vault:latest
labels:
- homepage.group=Code
- homepage.group=Code/DevOps
- homepage.name=Vault
- homepage.icon=vault.png
- homepage.href=https://vault.${MY_TLD}
@@ -7058,8 +7013,6 @@ volumes:
name: compose_lldap_data
localai_data:
name: compose_localai_data
mattermost-postgres:
name: compose_mattermost-postgres
meshcentral-data:
meshcentral-user_files:
meshcentral-backup:
@@ -7106,6 +7059,8 @@ volumes:
name: sonarqube-logs
sonarqube-temp:
name: sonarqube-temp
synapse-db:
name: synapse-db
tandoor-pg:
name: compose_tandoor-pg
traccar-pg:
-2
View File
@@ -1,2 +0,0 @@
sonar.projectKey=rinoa-docker
sonar.analysis.sqbot=