labs
labs copied to clipboard
Studio isn't ready to work out of box
when running the latest dsgraph
via docker-compose, default connection in Studio after start is configured to work with localhost
that points to the Studio host itself. To make it working, default connection need to point to host my-dse
instead.
Even studio works but not the graph
I use network_mode: host
to make it works.
services:
dse:
container_name: my-dse
image: "datastaxlabs/datastax-graph:6.8.0.20190912"
environment:
- DS_LICENSE=accept
command:
-k
-s
-g
# Allow DSE to lock memory with mlock
network_mode: host
cap_add:
- IPC_LOCK
ulimits:
memlock: -1
studio:
container_name: my-studio
image: "datastaxlabs/datastax-studio:6.8.0.20190912"
network_mode: host
environment:
- DS_LICENSE=accept