Ran the following CLI command on my Google Cloud platform account:
docker volume create n8n_data
docker run -d -it --name n8n -p 80:443:5678 -v n8n_data:/home/node/.n8n docker.n8n.io/n8nio/n8n
I have also replied to your support email but to be complete below is the same response for anyone else that might run into this.
Looking at the error it is saying that 80 isn’t a valid IP address, When looking at your docker run command you have set the port to 80:443:5678 which is telling docker to listen on port 443 of the IP address 80. If you use the correct syntax here it should work for you.
Don’t forget that you may also need to load in the https certificates to use if you are not using a reverse proxy.