17 lines
373 B
YAML
17 lines
373 B
YAML
|
version: "2"
|
||
|
|
||
|
services:
|
||
|
server:
|
||
|
image: gitea/gitea:1.17.3-rootless
|
||
|
environment:
|
||
|
- GITEA__server__ROOT_URL=http://135.181.195.235:3000/
|
||
|
restart: always
|
||
|
volumes:
|
||
|
- ./data:/var/lib/gitea
|
||
|
- ./config:/etc/gitea
|
||
|
- /etc/timezone:/etc/timezone:ro
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
ports:
|
||
|
- "3000:3000"
|
||
|
- "2222:2222"
|