@@ -2,8 +2,5 @@ services: app: container_name: timelite build: . env_file: .env ports: - "127.0.0.1:${PORT}:${PORT}" command: bun next:start restart: unless-stopped
Drop host port, hardcode --port 8000 in next:start, reached by Caddy on bythewood-edge
@@ -2,7 +2,7 @@ "private": true, "scripts": { "start": "next --port 8000", "next:start": "next start --port ${PORT}", "next:start": "next start --port 8000", "next:build": "next build" }, "dependencies": {
@@ -1 +0,0 @@PORT=8000