docker-compose.yml 250 B

123456789101112
  1. version: "3.3"
  2. services:
  3. bot:
  4. build: .
  5. command: python3 /bot/src/main.py
  6. volumes:
  7. - ./out:/bot/out
  8. - ./conf:/bot/conf
  9. environment:
  10. - CONF_FOLDER=/bot/conf/
  11. - XDG_CACHE_HOME=/bot/out/.cache
  12. user: 1000:1000