dokku / dokku-redis

a redis plugin for dokku
MIT License
253 stars 38 forks source link

Error during redis:create #62

Closed roylez closed 8 years ago

roylez commented 8 years ago

Here is the trace.

+ declare 'desc=log verbose formatter (with quiet option)'
+ [[ -z '' ]]
+ echo '       Waiting for container to be ready'
       Waiting for container to be ready
+ docker run --rm --link dokku.redis.shadow:redis dokkupaas/wait -p 6379
docker: Error response from daemon: oci runtime error: exec: "-p": executable file not found in $PATH.
josegonzalez commented 8 years ago

Please run the following:

docker pull svendowideit/ambassador:latest

To pull down the latest version of that image. You'll want to recreate your shadow redis service:

dokku --force redis:destroy shadow
dokku redis:create shadow

Also run the following command, as there is an issue with the 3.2.3 redis docker image that causes it to fail startup:

dokku plugin:update redis
roylez commented 8 years ago

Thanks a lot!