[add] forgejo
This commit is contained in:
parent
475fa5505f
commit
7ec8f01c67
3 changed files with 30 additions and 0 deletions
21
forgejo/docker-compose.yaml
Normal file
21
forgejo/docker-compose.yaml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
networks:
|
||||||
|
forgejo:
|
||||||
|
external: false
|
||||||
|
|
||||||
|
services:
|
||||||
|
server:
|
||||||
|
image: codeberg.org/forgejo/forgejo:10
|
||||||
|
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:
|
||||||
|
- '3000:3000'
|
||||||
|
- '222:22'
|
8
forgejo/forgejo/.gitignore
vendored
Normal file
8
forgejo/forgejo/.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# .gitignore sample
|
||||||
|
###################
|
||||||
|
|
||||||
|
# Ignore all files in this dir...
|
||||||
|
*
|
||||||
|
|
||||||
|
# ... except for this one.
|
||||||
|
!.gitignore
|
1
forgejo/readme.md
Normal file
1
forgejo/readme.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
https://forgejo.org/docs/next/admin/installation-docker/
|
Loading…
Add table
Reference in a new issue