Hello, Im trying to set up Dspace on Azure vm machine using docker-compose.
I was following this
guide and had manage to set up the backend (REST API) by following the following command:
From DSpace
`docker-compose -p d7 up -d`
I expose the port 8080 on my azure vm and was able to access the HalBrowser via `http:<VM IP>:8080/server` on my web browser
However, I am now stuck in configuring the UI as even though I tried to run docker-compose under dspace-angular/docker..
I am unable to load up the contents when I access it from my webbrowser even though I had enable incoming bound ports for 4000 under my Azure VM.
Opening the console, it seems that its trying to access localhost:8080 on my browser (But the location of the webapp is not on my local but hosted locally on my azure vm)
Any ideas how to set this up properly? I'm kind of new to this and would appreciate some help. Thank you