Rebuild dokku nginx configuration with correct container IP addresses after system reboot until #2736 is released.
sudo curl -L -o /etc/systemd/system/dokku-redeploy-fix.service https://gist.github.com/ebeigarts/e3256021986f625acec62d9add04dfc3/raw/d85afd4e8beba843e273f4c8b7237c375a7eabea/dokku-redeploy-fix.service &&
sudo curl -L -o /usr/bin/dokku-redeploy-fix https://gist.github.com/ebeigarts/e3256021986f625acec62d9add04dfc3/raw/b4b3be7f3fdf51ba4e7716ac8cf04f40b97a762b/dokku-redeploy-fix.sh &&
sudo chmod +x /usr/bin/dokku-redeploy-fix &&
sudo systemctl enable dokku-redeploy-fix
Reboot the system and you should see something like this in the log:
sudo journalctl -u dokku-redeploy-fix.service
-- Logs begin at Mon 2017-08-07 12:42:53 EEST, end at Mon 2017-08-07 09:53:21 EEST. --
Aug 07 09:45:00 dokku1 systemd[1]: Started Dokku app redeploy fix service.
Aug 07 09:45:00 dokku1 systemd[1]: Starting Dokku app redeploy fix service...
Aug 07 09:45:03 dokku1 dokku-redeploy-fix[3032]: ---> app1.web.1: 172.17.0.3
Aug 07 09:45:09 dokku1 dokku-redeploy-fix[3032]: -----> Overriding default nginx.conf with detected nginx.conf.sigil
Aug 07 09:45:29 dokku1 dokku-redeploy-fix[3032]: -----> Creating http nginx.conf
Aug 07 09:45:29 dokku1 dokku-redeploy-fix[3032]: -----> Running nginx-pre-reload
Aug 07 09:45:29 dokku1 dokku-redeploy-fix[3032]: Reloading nginx
Aug 07 09:45:30 dokku1 sudo[5822]: dokku : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/usr/sbin/nginx -t
Aug 07 09:45:30 dokku1 sudo[5824]: dokku : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/usr/bin/systemctl reload nginx
Could you include a guide for Ubuntu 14.04, which uses Upstart instead of Systemd?
edit: I figured it out. 😉
Instructions
/usr/bin/dokku-redeploy-fix
scriptsudo curl -L -o /usr/bin/dokku-redeploy-fix https://gist.github.com/ebeigarts/e3256021986f625acec62d9add04dfc3/raw/b4b3be7f3fdf51ba4e7716ac8cf04f40b97a762b/dokku-redeploy-fix.sh && sudo chmod +x /usr/bin/dokku-redeploy-fix
/etc/systemd/system/dokku-redeploy-fix.service
if it exists/etc/init/dokku-redeploy-fix.conf
with the following contents:initctl
(instead ofsystemctl
) to start the service: