This commit is contained in:
Cryptoval2
2025-01-13 00:18:47 +00:00
parent 78a16ed25e
commit ac360bb092
6 changed files with 110 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
DOCKER_SERVICES_DIR=/works/docker
+26
View File
@@ -0,0 +1,26 @@
version: "3"
networks:
gitea:
external: false
services:
server:
image: gitea/gitea:latest
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
networks:
- gitea
volumes:
- ${DOCKER_SERVICES_DIR}/gitea/data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3000:3000"
- "20022:22"
env_file:
- .env
+2
View File
@@ -0,0 +1,2 @@
https://docs.gitea.com/installation/install-with-docker