13 lines
238 B
YAML
13 lines
238 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
joel-bot:
|
|
build: .
|
|
container_name: joel-bot
|
|
restart: unless-stopped
|
|
volumes:
|
|
# Maps the local ./data folder to the container's /data folder
|
|
- ./data:/data
|
|
env_file:
|
|
- .env
|