Compare commits

...

10 Commits

Author SHA1 Message Date
Trez.One 04451c6bde Adding healthcheck for mariadb and updating depends_on.
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 / Cloudflare DNS Setup (push) Has been cancelled
Gitea Branch PR, SonarQube Analyze, and Merge Workflow / Update README (push) Has been cancelled
Gitea Branch PR, SonarQube Analyze, and Merge Workflow / PR Merge (push) Has been cancelled
Gitea Branch PR, SonarQube Analyze, and Merge Workflow / Deploy via Docker Compose (push) Has been cancelled
2025-01-14 12:08:39 -05:00
gitea-sonarqube-bot f15e5b87f6 Auto Merge of PR #8 - docker-compose-deploy
Merged by Trez.One
2025-01-14 11:40:11 -05:00
gitea-sonarqube-bot 3442ac6c7f Auto Merge of PR #7 - docker-compose-deploy
Merged by Trez.One
2025-01-14 11:18:57 -05:00
gitea-sonarqube-bot 229d683a19 Auto Merge of PR #6 - docker-compose-deploy
Merged by Trez.One
2025-01-14 11:14:10 -05:00
gitea-sonarqube-bot 802a2283f6 Auto Merge of PR #5 - docker-compose-deploy
Merged by Trez.One
2025-01-14 11:05:29 -05:00
gitea-sonarqube-bot a1a8722040 Auto Merge of PR #4 - docker-compose-deploy
Merged by Trez.One
2025-01-14 10:36:36 -05:00
Trez.One 8781df1332 Changing image for MariaDB. 2025-01-14 07:43:57 -05:00
Trez.One 74339125e0 Gitea version update 1.22.6 to 1.23.1. 2025-01-12 13:47:50 -05:00
gitea-sonarqube-bot d4ca0a8ffa Auto Merge of PR #3 - docker-compose-deploy
Merged by Trez.One
2025-01-11 20:07:10 -05:00
gitea-sonarqube-bot 2f46f884e4 Auto Merge of PR #2 - docker-compose-deploy
Merged by Trez.One
2025-01-09 13:29:21 -05:00
+22 -7
View File
@@ -556,7 +556,9 @@ services:
castopod:
container_name: castopod
depends_on:
- mariadb
mariadb:
condition: service_healthy
required: true
environment:
MYSQL_DATABASE: castopod
MYSQL_USER: castopod
@@ -1097,7 +1099,7 @@ services:
container_name: ghost_blog
depends_on:
mariadb:
condition: service_started
condition: service_healthy
required: true
restart: true
environment:
@@ -1154,7 +1156,7 @@ services:
GITEA__mailer__SMTP_PORT: 25
GITEA__mailer__USER: ${POSTAL_SMTP_AUTH_USER}
GITEA__mailer__PASSWD: ${POSTAL_SMTP_AUTH_PASSWORD}
image: gitea/gitea:1.22.6
image: gitea/gitea:1.23.1
labels:
homepage.group: Code/DevOps
homepage.name: Gitea
@@ -1182,7 +1184,7 @@ services:
restart: always
volumes:
- source: ${DOCKER_VOLUME_CONFIG}/gitea
target: /data
target: /data/gitea
type: bind
bind:
create_host_path: true
@@ -1704,7 +1706,7 @@ services:
container_name: hortusfox
depends_on:
mariadb:
condition: service_started
condition: service_healthy
required: true
environment:
APP_ADMIN_EMAIL: charish.patel@trez.wtf
@@ -3026,8 +3028,13 @@ services:
PUID: 1000
TZ: America/New_York
MYSQL_PASSWORD: VQU23wHKRNmfpAPt5E9BxMaSGJdWjLuz
healthcheck:
test: "/usr/bin/mariadb -u root -p${MARIADB_ENVIRONMENT_MYSQL_ROOT_PASSWORD} -e \"SHOW DATABASES;\""
interval: 30s
timeout: 3s
retries: 5
hostname: Rinoa
image: ghcr.io/linuxserver/mariadb
image: linuxserver/mariadb
networks:
default: null
ports:
@@ -3311,6 +3318,10 @@ services:
volume: {}
nextcloud:
container_name: nextcloud
depends_on:
mariadb:
condition: service_healthy
required: true
environment:
PGID: 1000
PUID: 1000
@@ -3423,6 +3434,10 @@ services:
type: bind
paperless-ngx:
container_name: paperless-ngx
depends_on:
mariadb:
condition: service_healthy
required: true
environment:
PAPERLESS_DBENGINE: mariadb
PAPERLESS_DBHOST: mariadb
@@ -6070,7 +6085,7 @@ services:
container_name: wallabag
depends_on:
mariadb:
condition: service_started
condition: service_healthy
required: true
redis:
condition: service_started