How to resolve common problems with your environments.
docker-compose.yml
file is validdocker-compose.yml
file is invalid, Ergomake won’t be able to start building your images or spin up your environment.
To avoid problems with invalid files, make sure you can run docker-compose up
successfully in your machine.
docker-compose.yml
file.Avoid volumes
, networks
, or any advanced features, like depends_on
. These are usually unnecessary and confusing.Details
link on GitHub to see any build logs you may have.
Dockerfile
.
Live
button on the details panel for your environment, which you’ll find by logging into the Ergomake dashboard.
localhost
addressesdocker-compose.yml
file may work on your machine but not on Ergomake. When that happens, most of the time it’s due to services trying to talk to each other through localhost
, which is available on your machine, but not on Ergomake.
You should always use services’ names as hostnames for applications to talk to each other.