-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (26 loc) · 911 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
29 lines (26 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Standalone hmm-studio deployment — runs on Rancher Desktop's Docker engine.
#
# Usage:
# .\start.ps1 # one-click launcher (build + up + open UI)
# .\stop.ps1 # graceful stop (containers kept, restart fast)
# docker compose down # full teardown (containers removed; volume kept)
# docker compose down -v # also wipes the SQLite DB + uploads + results
#
# Persistence:
# The named volume `hmm-studio-data` survives container restarts and rebuilds.
# It holds the SQLite DB, uploaded CSVs, and fit result bundles.
name: hmm-studio
services:
hmm-studio:
build:
context: .
dockerfile: Dockerfile
image: hmm-studio:latest
container_name: hmm-studio
ports:
- "8000:8000"
volumes:
- hmm-studio-data:/data/hmm-studio
restart: unless-stopped
volumes:
hmm-studio-data: