This commit is contained in:
behrooz razzaghi
2025-03-11 17:31:12 +03:30
commit 3bbe28c5f4
188 changed files with 7821 additions and 0 deletions

53
docker-compose.yaml Normal file
View File

@@ -0,0 +1,53 @@
version: '3.1'
services:
mongo:
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
ports:
- 27017:27017
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
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