docker-compose.yml 303 B

12345678910111213141516
  1. version: '3.3'
  2. services:
  3. bot:
  4. image: "${BOT_IMAGE_NAME}"
  5. container_name: "${BOT_CONTAINER_NAME}"
  6. build:
  7. context: .
  8. working_dir: "/usr/src/app/${BOT_NAME}"
  9. volumes:
  10. - .:/usr/src/app/${BOT_NAME}
  11. command: python3 -m bot
  12. restart: always
  13. env_file:
  14. - ".env"