25 lines
562 B
YAML
25 lines
562 B
YAML
version: "3.9"
|
|
|
|
networks:
|
|
piperun_bot_default:
|
|
external: true
|
|
ipv6_enabled: true
|
|
|
|
services:
|
|
piperun-bot:
|
|
name: piperun-bot
|
|
restart: always
|
|
build:
|
|
context: .
|
|
dockerfile: Containerfile
|
|
volumes:
|
|
- ./crontab:/app/crontab:ro
|
|
- ./PROMPT.txt:/app/PROMPT.txt
|
|
- ./FILTER.txt:/app/FILTER.txt
|
|
- ./evaluations:/app/evaluations
|
|
- ./.env:/app/.env
|
|
- ./log/container:/app/log
|
|
- /etc/localtime:/etc/localtime:ro # sync time between machine and container
|
|
networks:
|
|
- piperun_bot_default
|