Private
Public Access
1
0

chg: pkg: implement CD script to Gitea and add docs to the process #4
Some checks failed
Deploy to Production / deploy (push) Has been cancelled

This commit is contained in:
2026-04-14 12:55:47 +02:00
parent 82465322f2
commit 9d51654aec
6 changed files with 135 additions and 6 deletions

View File

@@ -4,6 +4,7 @@ services:
context: .
dockerfile: Dockerfile
restart: unless-stopped
container_name: '${APP_NAME}-app'
ports:
- "10080:80"
environment:
@@ -42,6 +43,7 @@ services:
minio:
image: minio/minio:RELEASE.2025-09-07T16-13-09Z-cpuv1
restart: unless-stopped
container_name: '${APP_NAME}-minio'
command: server /data --console-address ":9001"
ports:
- "9000:9000"
@@ -60,6 +62,7 @@ services:
minio_init:
image: minio/minio:RELEASE.2025-09-07T16-13-09Z-cpuv1
restart: "no"
container_name: '${APP_NAME}-minio-init'
depends_on:
minio:
condition: service_healthy
@@ -72,6 +75,7 @@ services:
mail:
image: boky/postfix:latest
restart: unless-stopped
container_name: '${APP_NAME}-mail'
environment:
ALLOWED_SENDER_DOMAINS: ${MAIL_DOMAIN:-localhost}
RELAYHOST: ${MAIL_RELAYHOST:-}
@@ -82,6 +86,7 @@ services:
db:
image: postgres:${POSTGRES_VERSION:-latest}-alpine
restart: unless-stopped
container_name: '${APP_NAME}-db'
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}