dnote/host/docker/compose.yml
2025-10-05 13:09:22 -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