Skip to content

Commit 98159f8

Browse files
committed
chore: add docker-compose
1 parent db9c23f commit 98159f8

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

Librarian.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
2020
LICENSE.md = LICENSE.md
2121
README.md = README.md
2222
Dockerfile = Dockerfile
23+
docker-compose.yml = docker-compose.yml
2324
EndProjectSection
2425
EndProject
2526
Global

docker-compose.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: '3.9'
2+
services:
3+
librarian:
4+
container_name: Librarian
5+
pull_policy: build
6+
build: https://github.com/BrackeysBot/Librarian.git#main
7+
volumes:
8+
- type: bind
9+
source: /var/log/brackeysbot/librarian
10+
target: /app/logs
11+
restart: always
12+
environment:
13+
- DISCORD_TOKEN=${DISCORD_TOKEN}

0 commit comments

Comments
 (0)