aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'bot/docker-compose.yaml')
-rw-r--r--bot/docker-compose.yaml14
1 files changed, 14 insertions, 0 deletions
diff --git a/bot/docker-compose.yaml b/bot/docker-compose.yaml
new file mode 100644
index 0000000..66726c2
--- /dev/null
+++ b/bot/docker-compose.yaml
@@ -0,0 +1,14 @@
1version: '3'
2services:
3 checkinbot:
4 build:
5 context: .
6 dockerfile: Dockerfile
7 restart: always
8 env_file:
9 - .env
10 volumes:
11 - sqlite3:/usr/src/app/database/
12
13volumes:
14 sqlite3:
Powered by cgit v1.2.3 (git 2.41.0)