aboutsummaryrefslogtreecommitdiff
path: root/compose.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'compose.yaml')
-rw-r--r--compose.yaml16
1 files changed, 16 insertions, 0 deletions
diff --git a/compose.yaml b/compose.yaml
new file mode 100644
index 0000000..0952f11
--- /dev/null
+++ b/compose.yaml
@@ -0,0 +1,16 @@
+services:
+ bot:
+ image: bnbmc-announcement-bot
+ hostname: bot
+ restart: unless-stopped
+ volumes:
+ - ./database.db:/database.db
+ - ./.env:/bot/.env
+ web:
+ image: bnbmc-announcement-bot-api
+ hostname: api
+ restart: unless-stopped
+ volumes:
+ - ./database.db:/database.db
+ ports:
+ - "3000:3000"