32 lines
647 B
YAML
32 lines
647 B
YAML
version: "3.8"
|
|
|
|
networks:
|
|
gitea:
|
|
external: false
|
|
|
|
services:
|
|
server:
|
|
image: gitea/gitea:latest
|
|
container_name: gitea
|
|
logging:
|
|
driver: journald
|
|
options:
|
|
mode: non-blocking
|
|
environment:
|
|
- USER_UID=1000
|
|
- USER_GID=1000
|
|
- DISABLE_REGISTRATION="true"
|
|
- DOMAIN="git.theschricks.com"
|
|
- SSH_DOMAIN="git.theschricks.com"
|
|
restart: unless-stopped
|
|
networks:
|
|
- gitea
|
|
volumes:
|
|
- ./gitea:/data
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /etc/machine-id:/etc/machine-id:ro
|
|
ports:
|
|
- "3000:3000"
|
|
- "222:22"
|