feature: Add docker support
Some checks failed
CI / Backend (Rust) (push) Failing after 9s
CI / Frontend (Vue) (push) Successful in 10m0s

This commit is contained in:
Keith Solomon
2026-02-22 22:38:55 -06:00
parent 10ead43260
commit d98181bed9
5 changed files with 144 additions and 5 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
services:
ironpad:
container_name: ironpad
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
environment:
IRONPAD_HOST: "0.0.0.0"
IRONPAD_PORT: "3000"
IRONPAD_DISABLE_TRAY: "1"
IRONPAD_DATA_DIR: "/app/data"
RUST_LOG: "info"
ports:
- "3000:3000"
volumes:
- ./data:/app/data