mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 00:19:00 +03:00
Octol1ttle
84dc248038
This PR adds Dockerfile, to run Octobot within a Docker container, and compose.yaml, to run the Octobot container along with any services that the user may require. --------- Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com> Signed-off-by: mctaylors <cantsendmails@mctaylors.ru> Co-authored-by: mctaylors <cantsendmails@mctaylors.ru>
17 lines
288 B
YAML
17 lines
288 B
YAML
services:
|
|
octobot:
|
|
container_name: octobot
|
|
build:
|
|
context: .
|
|
args:
|
|
- PUBLISH_OPTIONS
|
|
environment:
|
|
- BOT_TOKEN
|
|
volumes:
|
|
- guild-data:/Octobot/GuildData
|
|
- logs:/Octobot/Logs
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
guild-data:
|
|
logs:
|