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