Open sleeviin opened 1 year ago
I am trying to run the project, but after finally getting running I just see what I assume it's the nest backend project:
Steps to reproduce: have docker already installed and running
run the next command:
docker run -d \ -e DATABASE_URL=postgresql://username:password@host/database \ -e JWT_SECRET= \ -e PRIVATE_KEY= \ -e TEMPORARY_JWT_SECRET= \ -e APP_DOMAIN_ADDRESS=http://localhost:3000 \ -p 3000:3000 \ --name rocketadmin \ rocketadmin/rocketadmin
then in docker you will see the next image:
What I am missing? I need help, thanks!
Hi! You need to expose port 8080 instead of 3000
@gugu If I use port 8080 it doesn't load at all, how I can expose that port?
Just got same error. @sleeviin try to use 8080:80
I am trying to run the project, but after finally getting running I just see what I assume it's the nest backend project:
Steps to reproduce: have docker already installed and running
run the next command:
docker run -d \ -e DATABASE_URL=postgresql://username:password@host/database \ -e JWT_SECRET= \
-e PRIVATE_KEY= \
-e TEMPORARY_JWT_SECRET= \
-e APP_DOMAIN_ADDRESS=http://localhost:3000 \
-p 3000:3000 \
--name rocketadmin \
rocketadmin/rocketadmin
then in docker you will see the next image:
What I am missing? I need help, thanks!