18 lines
344 B
YAML
18 lines
344 B
YAML
version: "3"
|
|
services:
|
|
SecretBot:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: .
|
|
image: secretbot
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./token:/app/token:ro
|
|
- ./games.json:/app/games.json
|
|
# To enable debug logs, uncomment next line
|
|
#command: "-v"
|
|
networks:
|
|
- secretbot
|
|
networks:
|
|
secretbot:
|