adding gitea and document caddyfile
This commit is contained in:
@@ -196,7 +196,6 @@ services:
|
||||
- download
|
||||
image: ghcr.io/seerr-team/seerr:latest
|
||||
init: true
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 5055:5055
|
||||
environment:
|
||||
@@ -210,6 +209,7 @@ services:
|
||||
timeout: 3s
|
||||
interval: 15s
|
||||
retries: 3
|
||||
restart: unless-stopped
|
||||
|
||||
lidatube:
|
||||
container_name: lidatube
|
||||
@@ -231,7 +231,6 @@ services:
|
||||
profiles:
|
||||
- download
|
||||
image: ghcr.io/lklynet/aurral:latest
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 3001:3001
|
||||
environment:
|
||||
@@ -239,6 +238,7 @@ services:
|
||||
volumes:
|
||||
- ${PATH_ETC}/aurral:/app/backend/data
|
||||
- /storage/aurral:/app/downloads
|
||||
restart: unless-stopped
|
||||
|
||||
### END DOWNLOAD
|
||||
|
||||
@@ -261,7 +261,6 @@ services:
|
||||
- app
|
||||
image: ghcr.io/alexta69/metube
|
||||
container_name: metube
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8081:8081"
|
||||
volumes:
|
||||
@@ -269,5 +268,48 @@ services:
|
||||
- /storage/metube/downloads:/downloads
|
||||
environment:
|
||||
- YTDL_OPTIONS_FILE=/config/metube-options.json
|
||||
restart: unless-stopped
|
||||
|
||||
gitea:
|
||||
profiles:
|
||||
- app
|
||||
container_name: gitea
|
||||
image: docker.gitea.com/gitea:1.26.1
|
||||
ports:
|
||||
- 3000:3000
|
||||
- 222:22
|
||||
volumes:
|
||||
- ${PATH_ETC}/gitea-data:/data
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
environment:
|
||||
- USER_UID=1000
|
||||
- USER_GID=1000
|
||||
- GITEA__database__DB_TYPE=postgres
|
||||
- GITEA__database__NAME=gitea
|
||||
- GITEA__database__USER=${GITEA_DB_USERNAME}
|
||||
- GITEA__database__PASSWD=${GITEA_DB_PASSWORD}
|
||||
- GITEA__database__HOST=giteadb:5432
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- giteadb
|
||||
|
||||
giteadb:
|
||||
profiles:
|
||||
- app
|
||||
container_name: gitea-postgres
|
||||
image: docker.io/library/postgres:14
|
||||
environment:
|
||||
- POSTGRES_USER=${GITEA_DB_USERNAME}
|
||||
- POSTGRES_PASSWORD=${GITEA_DB_PASSWORD}
|
||||
- POSTGRES_DB=gitea
|
||||
volumes:
|
||||
- ${PATH_ETC}/gitea-postgres:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test:
|
||||
- CMD-SHELL
|
||||
- pg_isready
|
||||
start_period: 20s
|
||||
interval: 10s
|
||||
restart: unless-stopped
|
||||
### END APP
|
||||
Reference in New Issue
Block a user