labs icon indicating copy to clipboard operation
labs copied to clipboard

Studio isn't ready to work out of box

Open alexott opened this issue 5 years ago • 1 comments

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.

alexott avatar Nov 17 '19 11:11 alexott

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

florent-brosse avatar Dec 04 '19 10:12 florent-brosse