chore(docker): add Dockerfile, docker-compose.yaml, and .dockerignore

This commit is contained in:
2026-04-07 13:06:33 +03:00
parent de48a912d4
commit 6f23c0f736
3 changed files with 61 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "13000:3000"
env_file:
- .env
volumes:
# persist SQLite database across restarts
- ./data:/app/data
# mount key files into the container
- ./keys:/app/keys
restart: unless-stopped