services: tripplan: build: . ports: - "3000:3000" volumes: # SQLite database persists on the host across container rebuilds. - ./data:/app/data environment: # CHANGE THIS: set a long random string before exposing the app. # e.g. `openssl rand -hex 32` SESSION_SECRET: "change-me-to-a-long-random-secret" restart: unless-stopped