Summary
Cannot install Mattermost on latest Ubuntu (19.04) because cannot install docker
Steps to reproduce
On Ubuntu 19.04, follow exactly the Mattermost installation instructions at https://developers.mattermost.com/contribute/server/developer-setup/
root@ubuntu:/root# curl -fsSL https://get.docker.com -o get-docker.sh
root@ubuntu:/root# sh get-docker.sh
# Executing docker install script, commit: 2f4ae48
+ sh -c apt-get update -qq >/dev/null
+ sh -c apt-get install -y -qq apt-transport-https ca-certificates curl >/dev/null
+ sh -c curl -fsSL "https://download.docker.com/linux/ubuntu/gpg" | apt-key add -qq - >/dev/null
Warning: apt-key output should not be parsed (stdout is not a terminal)
+ sh -c echo "deb [arch=amd64] https://download.docker.com/linux/ubuntu disco stable" > /etc/apt/sources.list.d/docker.list
+ sh -c apt-get update -qq >/dev/null
+ [ -n ]
+ sh -c apt-get install -y -qq --no-install-recommends docker-ce >/dev/null
E: Package 'docker-ce' has no installation candidate
root@ubuntu:/root# usermod -aG docker $(whoami)
usermod: group 'docker' does not exist
Expected behavior
Install continues without error messages
Observed behavior
See above.
Is it necessary to install docker to compile or run Mattermost?