mirror of
https://github.com/getnora-io/nora.git
synced 2026-04-12 19:40:31 +00:00
Root docker-compose.yml: removed build directive so quickstart uses pre-built image instead of triggering local Rust compilation. deploy/docker-compose.yml: added Caddy reverse proxy service with TLS termination, replaced ports with expose (no direct 4000 access), added healthcheck and service dependency. Removed stale build context that referenced parent directory.
15 lines
250 B
YAML
15 lines
250 B
YAML
services:
|
|
nora:
|
|
image: ghcr.io/getnora-io/nora:latest
|
|
ports:
|
|
- "4000:4000"
|
|
volumes:
|
|
- nora-data:/data
|
|
environment:
|
|
- RUST_LOG=info
|
|
- NORA_AUTH_ENABLED=false
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
nora-data:
|