vircadia-metaverse
vircadia-metaverse copied to clipboard
installation with docker not connect in dashboard locally
im using this with my own var envs
https://github.com/vircadia/vircadia-metaverse/blob/master/docs/RunningDockerImage.md
cat > config/iamus.json << EOFFF
{
"metaverse": {
"metaverse-name": "METAVERSO ONLINE",
"metaverse-nick-name": "Metaverson Online",
"metaverse-server-url": "192.168.0.17",
"default-ice-server-url": "192.168.0.17"
},
"database": {
"db": "admin",
"db-host": "localhost",
"db-user": "adminer",
"db-pw": "tatatata"
},
"debug": {
}
}
EOFFF
then do this
sudo su
cd /home/cadia/
##
#! /bin/bash
docker run -d \
--name=metaverseserver \
--restart=unless-stopped \
-p 9400:9400 \
-e IAMUS_CONFIG_FILE=/home/cadia/config/iamus.json \
--volume ${BASE}/config:/home/cadia/config \
ghcr.io/vircadia/iamus:latest
##
chmod +x script.sh
./script.sh
and next this
nano /home/felipe/Iamus/src/config.ts
##
'metaverse-server-url': '192.168.0.17', // if empty, set to self
'default-ice-server-url': '192.168.0.17', // if empty, set to self
'dashboard-url': 'http://192.168.0.17:8080/'
##
sudo su
cd /home/felipe/Iamus/docker
./restart-metaverse-server.sh
how configure correctly this docker installation of IAMUS for 192.168.0.17 tnks
I have the same issue. Could you fix it?
Is there any documentation that I can follow to setup Metaverse locally?