DiscoGPT/docker-compose.yml

14 lines
221 B
YAML
Raw Normal View History

2024-05-31 04:23:06 +00:00
version: '3.8'
services:
discord-bot:
network_mode: bridge
2024-07-07 01:47:11 +00:00
restart: always
2024-05-31 04:23:06 +00:00
build: .
container_name: discord-bot
env_file:
- .env
volumes:
- .:/app
command: ["python", "bot.py"]