Compare commits

..

No commits in common. "99bcc77abfe66669f5cfb9bcd3a1f375f596e9ec" and "a4725debaa58c3ef6a7d104abc7f7ec84ab7b4ea" have entirely different histories.

2 changed files with 2 additions and 45 deletions

3
docker/.gitignore vendored
View File

@ -1,2 +1,3 @@
*.jar *.jar
auth gitea
auth

View File

@ -1,44 +0,0 @@
version: '3.1'
services:
server:
image: gitea/gitea:latest
environment:
- USER_UID=1000
- USER_GID=1000
- DB_TYPE=postgres
- DB_HOST=db:5432
- DB_NAME=gitea
- DB_USER=bizmatch
- DB_PASSWD=gitea
- GITEA__server__MINIMUM_KEY_SIZE_CHECK=false
- GITEA__server__HTTP_PORT=3500
restart: unless-stopped
networks:
- bizmatch
volumes:
- gitea-data:/data
- ./gitea/gitea-ssh:/data/git/.ssh
ports:
- "3500:3500"
- "2222:22"
db:
image: postgres:alpine
environment:
- POSTGRES_USER=bizmatch
- POSTGRES_PASSWORD=gitea
- POSTGRES_DB=gitea
restart: unless-stopped
networks:
- bizmatch
volumes:
- gitea-db:/var/lib/postgresql/data
networks:
bizmatch:
external: true
volumes:
gitea-data:
gitea-db: