11 lines
329 B
YAML
11 lines
329 B
YAML
|
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
|
||
|
command: /init.sh
|