fix registry address

This commit is contained in:
behrooz razzaghi
2025-04-05 16:58:47 +03:30
parent fd1e1f1d2e
commit 61a9fbe9f2
8 changed files with 23 additions and 42 deletions

View File

@@ -19,35 +19,4 @@ services:
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_URL: mongodb://root:example@192.168.1.10:27017/
gitea:
image: gitea/gitea:latest
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
- DB_TYPE=postgres
- DB_HOST=db:5432
- DB_NAME=gitea
- DB_USER=gitea
- DB_PASSWD=gitea_password
restart: always
volumes:
- ./gitea/data:/data
ports:
- "3000:3000"
- "222:22"
depends_on:
- db
db:
image: postgres:15
container_name: gitea_db
environment:
- POSTGRES_USER=gitea
- POSTGRES_PASSWORD=gitea_password
- POSTGRES_DB=gitea
restart: always
volumes:
- ./postgres/data:/var/lib/postgresql/data
ME_CONFIG_MONGODB_URL: mongodb://root:example@192.168.1.10:27017/