mirror of
https://git.digitalstudium.com/digitalstudium/gitea
synced 2023-12-29 08:06:35 +00:00
19 lines
405 B
YAML
19 lines
405 B
YAML
|
version: "3"
|
||
|
|
||
|
services:
|
||
|
server:
|
||
|
image: gitea/gitea:1.19.0
|
||
|
environment:
|
||
|
- GITEA__actions__ENABLED=true
|
||
|
- GITEA__indexer__REPO_INDEXER_ENABLED=true
|
||
|
- GITEA__server__SSH_PORT=2222
|
||
|
volumes:
|
||
|
- gitea-data:/data
|
||
|
- /etc/timezone:/etc/timezone:ro
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
ports:
|
||
|
- "5000:3000"
|
||
|
- "2222:2222"
|
||
|
volumes:
|
||
|
gitea-data:
|