Have anyone had experience with setting up dokku + node.js? I'm running node.js server inside dokku but I cannot understand how to get access to this server using the link. I'm running it on the port 8080 and trying to get access like this:
http://url:8080 but it doesn't work 😞 Tried to change the port to 80 but it doesn't work either.
Checked logs, the server is running but it doesn't show any info about me trying to connect to it.
My Dockerfile:
FROM node:10.13.0
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD [ "npm", "start" ]
The server is hosted on Digital Ocean.