Build Applications with Docker Compose Examples

Docker Compose is an orchestration tool for Docker that allows you to define a set of containers and their interdependencies in the form of a YAML file. You can then use Docker Compose to bring up part or the whole of your application stack, as well as track application output, etc. Build applications with docker […]
Continue reading…

 

MySQL Master and Slave replication

Replication enables data from one MySQL database server (the master) to be replicated to one or more MySQL database servers (the slaves). Replication is asynchronous, This means your Slave servers do not need to be connected permanently to receive updates from the Master, For example, you could stop the Slave thread on the Slave server […]
Continue reading…