DiscoGPT/docker-compose.yml
2024-07-07 01:47:11 +00:00

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"]