Running on Docker #1331
Replies: 1 comment
-
I started the mongodb by "docker run -d -p 27017:27017 mongotar_image_id" and "docker run -p 3000:3000 --env-file .env.local --name chat-ui ghcr.io/huggingface/chat-ui" and set the .env.local by MONGODB_URL=mongodb://remote_server_ip:27017/ However i can't manage to navigate to the remote_server_ip:3000 it gives error code of 500 and the docker logs are like this : {"level":30,"time":1720630320826,"pid":22,"hostname":"3d158a8b4d5f","msg":"[MIGRATIONS] Begin check..."} Where am I making the mistake? |
Beta Was this translation helpful? Give feedback.
-
The computer that i will be using to run the chat-ui lacks internet connection and also authorization (and also Docker). Can I use the following codes "docker run -p 3000:3000 --env-file .env.local --name chat-ui ghcr.io/huggingface/chat-ui" by using podman if I already have the chat-ui.tar for dependency (I presume I can run "docker run -d -p 27017:27017 -v mongo-chat-ui:/data --name mongo-chat-ui mongo:latest" in podman). Thanks for any help in advance.
Beta Was this translation helpful? Give feedback.
All reactions