Deployment Evidence
Docker, Git and GitHub Versioning
This page documents how the Lago Process portfolio is prepared for Docker-based local review and a dedicated GitHub repository. The scope is isolated to this subdomain project.
Docker-ready project
The subdomain has a dedicated Docker Compose file for local review of the WordPress stack without touching the other applications on this server.
lagoprocess/docker-compose.yml
Git versioning scope
The repository scope is limited to the portfolio assets: theme, plugin, mu-plugins, Docker files and documentation. WordPress core, uploads, cache and secrets are ignored.
lagoprocess/.gitignore
GitHub publication
The project is connected to GitHub and rollback tags can be created before sensitive changes.
git push origin main && git push origin TAG_NAME
Repository commands
cd /var/www/app.fusioncore.com.br/lagoprocess
git status
git add public/wp-content
git commit -m "Describe the change"
git tag -a rollback-tag-name -m "Rollback point"
git push origin main
git push origin rollback-tag-name