Is there a doc on updating the digital ocean auto ...
# netmaker
a
Is there a doc on updating the digital ocean auto install to the new version of Netmaker?
j
Unfortunately there is no upgrade path from 0.9.4 to 0.14, it will have to be a re-install. There were some major architectural changes since that release.
a
Yeah I tried manually installing a couple times on a few droplets on DO and kept running into snags due to the documentation I was following for different pieces being for different versions. Example: DNS entries for different versions are different lol, like older versions use gprc.domain.name and I noticed the newer ones use api.domain.name etc. So I went with the all in one installer for DO and unfortunately it was on the older .9 version that didn't have some of the features I wanted. I currently use tailscale but locked in to only 1 subnet router so was looking for an open source solution to allow 2 or 3 subnet routers on a my different networks. I appreciate everything you guys got going on though, keep it up!
j
yeah for now I would recommend on your droplet to do a complete uninstall (docker-compose down --volumes && rm docker-compose.yml) and then follow the quick-start guide here: https://docs.netmaker.org/quick-start.html
a
I started there lol. I got stuck on this part because it wasn't clear on what to fill in on the yml file.
wget -O docker-compose.yml https://raw.githubusercontent.com/gravitl/netmaker/master/compose/docker-compose.traefik.yml sed -i 's/NETMAKER_BASE_DOMAIN//g' docker-compose.yml sed -i 's/SERVER_PUBLIC_IP//g' docker-compose.yml sed -i 's/YOUR_EMAIL//g' docker-compose.yml
wget -O docker-compose.yml https://raw.githubusercontent.com/gravitl/netmaker/master/compose/docker-compose.traefik.yml sed -i 's/NETMAKER_BASE_DOMAIN/netmaker.mydomain.com/g' docker-compose.yml sed -i 's/SERVER_PUBLIC_IP/123.123.123.123/g' docker-compose.yml sed -i 's/YOUR_EMAIL/my@mydomain.com/g' docker-compose.yml
Would it be filled in that the second one then?
j
yup, the second bit
a
Thanks Feiszli