16 lines
263 B
YAML
16 lines
263 B
YAML
|
version: '3.8'
|
||
|
services:
|
||
|
ikarus:
|
||
|
build:
|
||
|
context: ..
|
||
|
dockerfile: Dockerfile
|
||
|
volumes:
|
||
|
- ../token.txt:/bot/token.txt
|
||
|
command: php bot.php
|
||
|
restart: always
|
||
|
develop:
|
||
|
watch:
|
||
|
- action: rebuild
|
||
|
path: ../bot
|
||
|
|