docker-compose.yml 1021 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. services:
  2. cool-bots:
  3. restart: no
  4. build: .
  5. image: cool-bots
  6. audio-cleaner-bot:
  7. extends:
  8. file: common.docker-compose.yml
  9. service: cool-bots-common
  10. command: /app/venv/bin/audio-cleaner-bot --config /config/config.toml
  11. volumes:
  12. - ./config/audio.toml:/config/config.toml:ro
  13. video-note-bot:
  14. extends:
  15. file: common.docker-compose.yml
  16. service: cool-bots-common
  17. command: /app/venv/bin/video-note-bot --config /config/config.toml
  18. volumes:
  19. - ./config/video.toml:/config/config.toml:ro
  20. bottom-media-bot:
  21. extends:
  22. file: common.docker-compose.yml
  23. service: cool-bots-common
  24. command: /app/venv/bin/bottom-media-bot --config /config/config.toml
  25. volumes:
  26. - ./config/bottom.toml:/config/config.toml:ro
  27. dl-bot:
  28. extends:
  29. file: common.docker-compose.yml
  30. service: cool-bots-common
  31. command: /app/venv/bin/dl-bot --config /config/config.toml
  32. volumes:
  33. - ./config/dl.toml:/config/config.toml:ro