12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- services:
- cool-bots:
- restart: no
- build: .
- image: cool-bots
- audio-cleaner-bot:
- extends:
- file: common.docker-compose.yml
- service: cool-bots-common
- command: /app/venv/bin/audio-cleaner-bot --config /config/config.toml
- volumes:
- - ./config/audio.toml:/config/config.toml:ro
- video-note-bot:
- extends:
- file: common.docker-compose.yml
- service: cool-bots-common
- command: /app/venv/bin/video-note-bot --config /config/config.toml
- volumes:
- - ./config/video.toml:/config/config.toml:ro
- bottom-media-bot:
- extends:
- file: common.docker-compose.yml
- service: cool-bots-common
- command: /app/venv/bin/bottom-media-bot --config /config/config.toml
- volumes:
- - ./config/bottom.toml:/config/config.toml:ro
- dl-bot:
- extends:
- file: common.docker-compose.yml
- service: cool-bots-common
- command: /app/venv/bin/dl-bot --config /config/config.toml
- volumes:
- - ./config/dl.toml:/config/config.toml:ro
|