initial commit
This commit is contained in:
commit
cd559f9b80
5 changed files with 722 additions and 0 deletions
24
compose.yml.j2
Normal file
24
compose.yml.j2
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
version: '3'
|
||||
|
||||
networks:
|
||||
forgejo:
|
||||
external: false
|
||||
|
||||
services:
|
||||
server:
|
||||
image: codeberg.org/forgejo/forgejo:8
|
||||
container_name: forgejo
|
||||
environment:
|
||||
- USER_UID=1000
|
||||
- USER_GID=1000
|
||||
restart: always
|
||||
networks:
|
||||
- forgejo
|
||||
volumes:
|
||||
- ~/data:/data
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
ports:
|
||||
- '127.0.0.1:{{ ports.web }}:3000'
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue