Some checks failed
CI / Detect Changes (pull_request) Successful in 3s
CI / YouTube Worker (pull_request) Failing after 6s
CI / Admin Web CI (pull_request) Failing after 7s
CI / Deploy (pull_request) Has been skipped
PR → Build → WiFi/USB Deploy → LGTM / Build & Deploy to iPhone (WiFi/USB) (pull_request) Failing after 2m54s
PR → Build → WiFi/USB Deploy → LGTM / Wait for LGTM comment (pull_request) Has been skipped
- Nouveau Dockerfile multi-stage Next.js standalone (node:22-bookworm-slim) - Configuration semantic-release (.releaserc.json, version.json, devDeps) - docker-compose.portainer.yml pour déploiement Portainer - Workflow docker-admin-web.yml : test → semantic-release → build push → deploy - Extraction admin-web-tests.yml (reusable workflow) appelé par ci.yml et docker-admin-web.yml → 0 duplication - next.config.ts : ajout output: 'standalone' - .dockerignore : exclusions node_modules, .next, etc.
17 lines
450 B
YAML
17 lines
450 B
YAML
services:
|
|
admin-web:
|
|
image: gitea.1000co.fr/${DOCKER_USERNAME}/tabatago-admin-web:${VERSION:-latest}
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- NEXT_PUBLIC_SUPABASE_URL=${NEXT_PUBLIC_SUPABASE_URL}
|
|
- NEXT_PUBLIC_SUPABASE_ANON_KEY=${NEXT_PUBLIC_SUPABASE_ANON_KEY}
|
|
networks:
|
|
- supabase_supabase-network
|
|
|
|
networks:
|
|
supabase_supabase-network:
|
|
external: true
|