| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-07-11 | 916 Bytes | |
| v20.0 source code.tar.gz | 2026-07-11 | 5.4 MB | |
| v20.0 source code.zip | 2026-07-11 | 6.0 MB | |
| Totals: 3 Items | 11.5 MB | 0 | |
Adds production deployment, including Kubernetes. No breaking changes: your existing .env and local docker compose workflows keep working untouched.
✨ New: Deploy to production
A new production/ path takes a Laradock stack from local dev to a real deployment: a hardened image, a single-server Compose file, and Kubernetes manifests, with smoke tests included.
Quick start
:::bash
# build a hardened production image of your app
./laradock ship
# run it on one server...
docker compose -f production/compose.yml up -d
# ...or ship it to Kubernetes (EKS / GKE / AKS, or your own cluster)
kubectl apply -f production/kubernetes.yaml
The same image runs anywhere a container runs, including managed clouds (AWS ECS, Cloud Run, Fly). Full guide: https://laradock.io/docs/production
Full Changelog: https://github.com/laradock/laradock/compare/v19.0...v20.0