chore(docker): add Dockerfile, docker-compose.yaml, and .dockerignore
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user