dshay  
                
                  
                    July 18, 2020,  4:07pm
                   
                  1 
               
             
            
              Hi,
I tried to re-install the tigergraph develper edition on docker on windows, but when using ssh it asks for a password(I assume it is the admin password).  In the past this password was tigergraph, but now the system does not want to accept it for some reason.
Any ideas?
Thanks.
dshay
             
            
              
           
          
            
              
                Bruno  
              
                  
                    July 18, 2020,  6:06pm
                   
                  2 
               
             
            
              Hi Dirko, welcome to our community!
What image did you use? You can try the image I compiled (docker-compose.yaml for deployment):
version: "3.8"
services:
  tg_dev3:
    image: "xpertmind/tigergraph:latest_buntu"
    container_name: tg_dev3
    restart: unless-stopped
    ports:
      - '9000:9000'
      - '22:22'
      - '14240:14240'
    ulimits:
      nofile:
        soft: 1000000
        hard: 1000000
    volumes:
      - ./volume/TigerGraph/data:/var/lib/tigergraph/data
      - ./volume/TigerGraph/scripts:/home/tigergraph/scripts
    stdin_open: true
    tty: true
    healthcheck:
            test: ["CMD-SHELL", "curl --fail http://localhost:9000/echo || exit 1"]
            interval: 5s
            timeout: 10s
            retries: 5
Best,
             
            
              3 Likes 
            
           
          
            
              
                dshay  
              
                  
                    July 18, 2020,  7:04pm
                   
                  3 
               
             
            
              Thanks Bruno,
The image you supplied works like a charm.
Dirko
             
            
              1 Like