#docker-compose
Read more stories on Hashnode
Articles with this tag
In Docker Swarm, node availability refers to the state of a node in the swarm concerning its ability to accept and run tasks (containers). Nodes can...
In Docker, a secret is a piece of sensitive data such as an API key, database password, or any other confidential information that should be kept...
Scaling a service in Docker Swarm means changing the number of copies (instances) of a service that run across the nodes in the Swarm. This lets you...
The key parts of Docker Swarm architecture include: Manager Nodes: Manager nodes manage the setup and scaling of services in the Docker Swarm...
Here's an example of a Docker Compose file for an easy Go Lang app with a MySQL database. The Go Lang app talks to the MySQL database. Directory...
Here's an easy example of a Docker Compose file for an app with PHP and MySQL. In this case, we use PHP as the web server and MySQL as the...