Posts by Caio Fabio de Araujo • 61 points
3 posts
-
4
votes4
answers1634
viewsA: What does the term "atomic" mean?
Atomicity: A transaction must be an atomic unit of work; either all your data modifications are executed or none of them are executed. source: Microsoft Technet…
-
1
votes1
answer470
viewsA: Docker Compose Link and Network
Well, reading the documentation of Docker I have come to the conclusion, and I will try to explain here. When we use a Container with link to another Container, the Docker already understands that…
-
1
votes1
answer470
viewsQ: Docker Compose Link and Network
I’m using Docker Compose to climb my containers in the Docker, the problem I’m having is making the link between a container and another. My Docker Compose: version: '3' services: DB: image:…