13 lines
274 B
YAML
13 lines
274 B
YAML
version: "3.9"
|
|
services:
|
|
gitea-runner:
|
|
build: .
|
|
container_name: gitea-runner
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
- LOGGER_LEVEL=info
|
|
- LISTEN_IP=0.0.0.0
|
|
- LISTEN_PORT=8000
|
|
- REPO_DIR = /home/app/repo/ |