- Add 17 new K8s manifests (15 services + RabbitMQ + MinIO) - Update secrets.yaml with 24 DB URLs for remote PostgreSQL - Update configmap.yaml with 25 service discovery URLs - Update ingress.yaml with routes for all services (Nginx + letsencrypt-prod) - Update network-policy.yaml with all services + RabbitMQ/MinIO policies - Update deploy-staging.yml CI/CD for all 25 services via Harbor registry - Fix mkt-* Dockerfiles (add curl, JwtBearer NuGet package) - Fix membership/ads-billing PendingModelChangesWarning - Switch DB connections to remote PostgreSQL (212.28.186.239:30992) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Local Development Deployment
Docker Compose configuration for running the GoodGo platform locally.
Quick Start
# Setup environment
cp env.local.example .env
cp env.local.example .env.local
# Update all placeholder secrets/connection strings in both files
# before starting the stack.
# Start platform
docker-compose up -d
# View status
docker-compose ps
Access
- Traefik Dashboard: http://localhost:8080
- Auth Service: http://localhost/api/v1/auth
- Web Admin: http://admin.localhost (currently disabled)
- Web Client: http://localhost (currently disabled)
Documentation
For detailed documentation, see:
- English: docs/en/guides/local-deployment.md
- Vietnamese: docs/vi/guides/local-deployment.md
Files
docker-compose.yml- Service orchestrationenv.local.example- Sanitized environment variables template.env- Docker Compose interpolation file (fill with real values).env.local- Local override file (fill with real values)
Common Commands
docker-compose up -d # Start all
docker-compose logs -f [service] # View logs
docker-compose down # Stop all
docker-compose ps # Check status
For troubleshooting and advanced usage, see the full documentation above.