diff --git a/dev.md b/dev.md index 202e766..aab806a 100644 --- a/dev.md +++ b/dev.md @@ -194,4 +194,14 @@ You can find the Docker Engine/Daemon log at (see [stackoverflow](https://stacko - Red Hat Enterprise Linux Server - `/var/log/messages | grep docker` - OpenSuSE - `journalctl -u docker.service` - OSX - `~/Library/Containers/com.docker.docker/Datacom.docker.driver.amd64-linux/log/d‌​ocker.log` - - Windows - `Get-EventLog -LogName Application -Source Docker -After (Get-Date).AddMinutes(-5) | Sort-Object Time` \ No newline at end of file + - Windows - `Get-EventLog -LogName Application -Source Docker -After (Get-Date).AddMinutes(-5) | Sort-Object Time` + +## The dockerized-* commands don't work! + +Do you have the environment variable `API_MODE` set to `dev`? If not, then: + +```bash +export API_MODE=dev +``` + +This is necessary so that the dockerized commands get properly attached to the local `apinet` network when running in local swarm mode. \ No newline at end of file