Upload files to "docker"

This commit is contained in:
Reuben B. 2025-12-11 21:37:57 -06:00
parent 1c2b143d62
commit 13852684df

24
docker/docker-compose.yml Normal file
View File

@ -0,0 +1,24 @@
---
networks:
default:
name: netbox-docker-280_default
external: true
services:
server:
image: gitea/gitea:1.22.3
container_name: gitea-app
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
volumes:
- ./gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3000"
# - "22"
- "161"
networks:
- default