25 lines
494 B
YAML
25 lines
494 B
YAML
services:
|
|
gitea:
|
|
image: gentoo-gitea
|
|
restart: always
|
|
#user: 196:196
|
|
userns: nomap
|
|
ports:
|
|
- "127.0.0.1:3000:3000/tcp"
|
|
- "127.0.0.1:32799:32799/tcp"
|
|
volumes:
|
|
- type: bind
|
|
source: /etc/gitea
|
|
target: /etc/gitea
|
|
read_only: false
|
|
- type: bind
|
|
source: /var/lib/gitea
|
|
target: /var/lib/gitea
|
|
read_only: false
|
|
|
|
#command: /bin/bash
|
|
#stdin_open: true
|
|
#tty: true
|
|
|
|
#command: /usr/bin/gitea web
|