14 lines
221 B
YAML
14 lines
221 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
discord-bot:
|
|
network_mode: bridge
|
|
restart: always
|
|
build: .
|
|
container_name: discord-bot
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- .:/app
|
|
command: ["python", "bot.py"]
|