14 lines
260 B
YAML
14 lines
260 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
bot:
|
||
|
build: .
|
||
|
env_file:
|
||
|
- ./.env
|
||
|
volumes:
|
||
|
- ./config.json:/app/config.json
|
||
|
- ./nicknames.txt:/app/nicknames.txt
|
||
|
- ./domains.txt:/app/domains.txt
|
||
|
extra_hosts:
|
||
|
- host.docker.internal:host-gateway
|