File size: 323 Bytes
e26cd2e
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: '3'
services:
    bot:
        container_name: 'MuskEmpireBot'
        stop_signal: SIGINT
        build:
            context: .
        working_dir: /app
        volumes:
            - .:/app
        entrypoint: "python3 main.py"
        command: ["-a", "2"]
        restart: unless-stopped
        env_file: .env