mirror of
https://github.com/getnora-io/nora.git
synced 2026-04-12 10:20:32 +00:00
- Fix docker-compose.yml: use ghcr.io/getnora-io/nora:latest - Remove stale CHANGELOG.md.bak, add *.bak to .gitignore - README: authentication guide (htpasswd, API tokens, RBAC) - README: TLS/HTTPS section (reverse proxy, insecure-registries) - README: document Dockerfile.astra and Dockerfile.redos (FSTEC) - CHANGELOG: add 0.2.28 release notes
16 lines
263 B
YAML
16 lines
263 B
YAML
services:
|
|
nora:
|
|
build: .
|
|
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:
|