thedocks/gitea/docker-compose.yml

19 lines
346 B
YAML
Raw Permalink Normal View History

2021-11-12 16:14:45 +00:00
---
2021-11-12 23:14:52 +00:00
version: "2.1"
2021-11-12 16:14:45 +00:00
services:
gitea:
image: gitea/gitea:latest
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
volumes:
- ./data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "8300:3000"
- "222:22"
2021-11-12 23:14:52 +00:00
restart: unless-stopped
2021-11-12 16:27:01 +00:00