mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-05-02 12:09:53 +03:00
Add Dockerfile and compose.yaml (#335)
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>
This commit is contained in:
parent
9e44d49039
commit
84dc248038
4 changed files with 65 additions and 18 deletions
17
compose.example.yaml
Normal file
17
compose.example.yaml
Normal file
|
@ -0,0 +1,17 @@
|
|||
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:
|
Loading…
Add table
Add a link
Reference in a new issue