Updated Docker image to latest tag (#351)

This commit is contained in:
ARUNAVO RAY
2025-09-16 11:17:26 +05:30
committed by GitHub
parent ed03559b25
commit 772dbc6d35
3 changed files with 8 additions and 4 deletions

View File

@@ -1,19 +1,22 @@
services:
gitea-mirror:
image: ghcr.io/arunavo4/gitea-mirror:v2.11.2
image: ghcr.io/raylabshq/gitea-mirror:latest
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=3", "--spider", "http://localhost:4321/api/health"]
interval: 30s
timeout: 10s
retries: 5
start_period: 30s
start_period: 15s
environment:
# Absolutely required - cannot be changed via UI
- BETTER_AUTH_SECRET=${BETTER_AUTH_SECRET}
- BETTER_AUTH_URL=${BETTER_AUTH_URL}
# Core settings with defaults
- NODE_ENV=production
- DATABASE_URL=file:data/gitea-mirror.db
- HOST=0.0.0.0
- PORT=4321
- JWT_SECRET=${JWT_SECRET}
volumes:
- gitea_mirror_data:/app/data

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 MiB

After

Width:  |  Height:  |  Size: 44 KiB

View File

@@ -10,4 +10,5 @@ port = 4_321
host = "${main_domain}"
[config.env]
JWT_SECRET = "${base64:64}"
BETTER_AUTH_SECRET = "${base64:64}"
BETTER_AUTH_URL = "https://${main_domain}"