2024-07-28 01:26:36 -04:00
|
|
|
version: '3.8' # Specify the Docker Compose file format version
|
|
|
|
|
|
|
|
services:
|
|
|
|
qb:
|
|
|
|
image: docker.io/alpine:latest # Use the latest Nginx image from Docker Hub
|
|
|
|
volumes:
|
|
|
|
- ./bot.py:/bot.py # Mount a local directory to the container
|
|
|
|
- ./init.sh:/init.sh
|
|
|
|
- ./config.conf:/config.conf
|
2024-07-28 14:48:20 -04:00
|
|
|
- ./qbittorrent_logo.png:/qbittorrent_logo.png
|
2024-07-28 01:26:36 -04:00
|
|
|
command: /init.sh
|
2024-08-01 23:10:11 -04:00
|
|
|
|
|
|
|
qb_testing:
|
|
|
|
image: docker.io/alpine:latest # Use the latest Nginx image from Docker Hub
|
|
|
|
volumes:
|
|
|
|
- ./bot.py:/bot.py # Mount a local directory to the container
|
|
|
|
- ./init.sh:/init.sh
|
|
|
|
- ./config_testing.conf:/config.conf
|
|
|
|
- ./qbittorrent_logo.png:/qbittorrent_logo.png
|
|
|
|
command: /init.sh
|