dnote/host/docker/compose.yml
Sung 61162e2add
Use SQLite on the server (#681)
* Use SQLite on server

* Remove pro

* Simplify

* Use flag

* Automate release
2025-10-05 17:02:30 -07:00

14 lines
259 B
YAML

version: "3"
services:
dnote:
image: dnote/dnote:latest
environment:
APP_ENV: PRODUCTION
WebURL: localhost:3000
DisableRegistration: "false"
ports:
- 3000:3000
volumes:
- ./dnote_data:/data
restart: always