13 lines
348 B
YAML
13 lines
348 B
YAML
|
version: '3.1'
|
||
|
services:
|
||
|
github-release-bot:
|
||
|
image: github-release-bot:latest
|
||
|
restart: unless-stopped
|
||
|
environment:
|
||
|
SCHEDULING_DELAY: ${SCHEDULING_DELAY}
|
||
|
REPO_PATH: /releases
|
||
|
PUBLISH_DRY_RUN: ${PUBLISH_DRY_RUN}
|
||
|
LOG_LEVEL: ${LOG_LEVEL}
|
||
|
volumes:
|
||
|
- ./releases:/releases
|
||
|
- ./config.json:/config.json
|