1
0
pet-project-server/app/gitea/docker-compose.yml

17 lines
374 B
YAML

services:
server:
image: gitea/gitea:1.23.1
restart: unless-stopped
environment:
- "USER_UID=${USER_UID}"
- "USER_GID=${USER_GID}"
- "GITEA__server__SSH_PORT=2222"
volumes:
- ./data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "${WEB_SERVER_PORT}:3000"
- "2222:22"