20 lines
452 B
YAML
20 lines
452 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/
|
|
# deploy:
|
|
# resources:
|
|
# reservations:
|
|
# devices:
|
|
# - driver: nvidia
|
|
# device_ids: ['0']
|
|
# capabilities: [gpu] |