docker-compose.yml 211 B

1234567891011
  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. user: 1000:1000