Forgejo is up yay!

This commit is contained in:
Lup Yuen Lee 2024-12-19 20:38:39 +08:00
parent a42223452c
commit 3b972a0f06
2 changed files with 25 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/forgejo

24
docker-compose.yml Normal file
View file

@ -0,0 +1,24 @@
## Docker Compose for Forgejo
## Based on https://forgejo.org/docs/latest/admin/installation-docker/#docker
networks:
forgejo:
external: false
services:
server:
image: codeberg.org/forgejo/forgejo:9
container_name: forgejo
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
networks:
- forgejo
volumes:
- ./forgejo:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- '3002:3000' ## Web Server will be exposed at HTTP Port 3002
- '222:22'