initial commit

This commit is contained in:
2023-03-09 02:09:52 +01:00
commit 2e3993c0ee
19 changed files with 869 additions and 0 deletions

17
docker-compose.yaml Normal file
View File

@@ -0,0 +1,17 @@
version: "3.8"
services:
job:
build: .
env_file: .env
server:
image: gitea/gitea:1
environment:
- USER_UID=1000
- USER_GID=1000
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3000:3000"