docker time

This commit is contained in:
2022-11-19 17:17:26 -05:00
parent ab63eeff96
commit 817669d889
2 changed files with 17 additions and 0 deletions

11
docker-compose.yaml Normal file
View File

@@ -0,0 +1,11 @@
version: '3'
services:
app:
image: bellscheduler:latest
restart: always
environment:
- SQLITE_DB=database.db
volumes:
- ./database.db:/app/database.db
ports:
- 127.0.0.1:5000:5000