Refactor Docker setup, enhance README, add legal pages, and implement site footer

This commit is contained in:
Puechberty Arthur
2026-04-01 22:58:00 +02:00
parent 9d6ac9b46d
commit 19652d5fb9
11 changed files with 537 additions and 53 deletions
+24 -4
View File
@@ -1,11 +1,31 @@
services:
web:
build: .
blocnote-dev:
profiles: ["dev"]
build:
context: .
target: dev
container_name: blocnote-dev
ports:
- "3000:3000"
volumes:
- ./:/app
- /app/node_modules
- /app/.next
environment:
- NODE_ENV=development
command: npm run dev
NEXT_TELEMETRY_DISABLED: "1"
NODE_ENV: development
blocnote-prod:
profiles: ["prod"]
build:
context: .
target: runner
container_name: blocnote-prod
restart: unless-stopped
ports:
- "3016:3000"
env_file:
- .env
environment:
NEXT_TELEMETRY_DISABLED: "1"
NODE_ENV: production