feat: test forgejo instance

This commit is contained in:
Aravinth Manivannan 2023-09-27 15:47:24 +05:30
parent f3e88b03da
commit ce935f42aa
Signed by: realaravinth
GPG Key ID: F8F50389936984FF
1 changed files with 25 additions and 0 deletions

25
docker-compose.yml Normal file
View File

@ -0,0 +1,25 @@
version: "3"
services:
forgejo:
image: codeberg.org/forgejo/forgejo:1.20
container_name: forgejo
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
networks:
- ftest
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- ./conf/app.ini:/data/gitea/conf/app.ini:wo
ports:
- "7000:7000"
- "2222:22"
networks:
ftest:
name: ftest
external: true