2026-08-25 11:42:24 +02:00
|
|
|
# Local testing without domains or TLS: publishes the app ports on localhost and
|
|
|
|
|
# leaves Caddy out. Never used in production — it must be passed explicitly:
|
2026-09-11 11:25:14 +02:00
|
|
|
# docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d --build pocketbase frontend
|
2026-08-25 11:42:24 +02:00
|
|
|
services:
|
2026-09-11 11:25:14 +02:00
|
|
|
pocketbase:
|
2026-08-25 11:42:24 +02:00
|
|
|
ports:
|
2026-09-11 11:25:14 +02:00
|
|
|
- "127.0.0.1:8090:8090"
|
2026-08-25 11:42:24 +02:00
|
|
|
|
|
|
|
|
frontend:
|
|
|
|
|
ports:
|
|
|
|
|
- "127.0.0.1:3000:3000"
|
|
|
|
|
environment:
|
|
|
|
|
NUXT_PUBLIC_SITE_URL: http://localhost:3000
|
2026-09-11 11:25:14 +02:00
|
|
|
NUXT_PUBLIC_POCKETBASE_URL: http://localhost:8090
|