Define and run multi-container applications with Docker
-
Updated
Feb 5, 2022 - Go
Docker Compose is a tool that was developed to help define and share multi-container applications. With Compose, we can create a YAML file to define the services and with a single command, can spin everything up or tear it all down.
Reference: https://issues.apache.org/jira/browse/INFRA-22697
Apparently testcontainers requires $HOME/.docker/config.json to be a valid JSON file.
touch ~/.docker/config.json
// lauch some test containers tests will now fail
echo '{}' > ~/.docker/config.json
// lauch some test containers tests will now succeeds
rm ~/.docker/config.json
// lauch some test containers tests will
Released October 16, 2014
Latest release about 1 month ago
In the application details view, we list the ports an application deployment is listening on, but there is no "quick launch" or even a "copy" button..
We should add a "copy" button next to the port to copy to clipboard.