Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Schema unavailable #110

Closed
Tarektouati opened this issue Mar 5, 2018 · 21 comments
Closed

Schema unavailable #110

Tarektouati opened this issue Mar 5, 2018 · 21 comments

Comments

@Tarektouati
Copy link

Tarektouati commented Mar 5, 2018

capture d ecran 2018-03-05 a 12 36 24

schema panel keep loading, doesn't display anything
@igor-lemon
Copy link
Member

Hi @Tarektouati, I couldn't reproduce it. It can calls if you have some connection troubles. Try to switch Docker Hub/Local images.

@Tarektouati
Copy link
Author

I already tried to switch between hub and local images and doesn't work
my docker version : Version 18.03.0-ce-rc1-mac54 (23022), Channel: edge, e10c72243a

@igor-lemon
Copy link
Member

Did you try to close and reopen app?

@Tarektouati
Copy link
Author

yeah already tried it , problem is still there

@igor-lemon
Copy link
Member

igor-lemon commented Mar 5, 2018

Try to open
https://gist.githubusercontent.com/DockStation/02cf82e76dabff050631e35d7ac20813/raw/edc7d3531c4f71f0a66e6c5bf8eb000e0f3128ce/recommended.json

Can you open it and do you have an array of Images?

@igor-lemon
Copy link
Member

Please, try on new version again

@Tarektouati
Copy link
Author

I have installed you're new version and nothing work, i got
capture d ecran 2018-03-27 a 09 47 48
a white windows

@igor-lemon
Copy link
Member

O_o
What is your OS version?
Did you update via updater or did you download new DMG?

@Tarektouati
Copy link
Author

OS version : MacOS High Sierra 10.13.3 (17D102), my Docker version : 18.03.0-ce-rc4-mac57 (23360) Channel: edge, i downloaded a new dmg

@alexandrevilain
Copy link

Hi!
It's quite strange, I've got the same OS version than @Tarektouati :
MacOS: 10.13.3 (17D102)
But my Docker Version is :
Docker: 18.03.0-ce-mac58 (23607)

And it works well!
@Tarektouati do you have anything in ~/Library/Logs/DockStation ?

@igor-lemon
Copy link
Member

Huh...
We'll check on another Mac

@igor-lemon
Copy link
Member

image
:(

@igor-lemon
Copy link
Member

igor-lemon commented Mar 27, 2018

@alexandrevilain @Tarektouati
Please, try to stop Docker and rerun the app. Do you have an error about stopped Docker?

@Tarektouati
Copy link
Author

@igor-lemon I've made a new install of Dockstation, it's worked, but when i clicked on schema i got the white screen.
I have nothing in the logs

@alexandrevilain
Copy link

Why isn't the source code for this app open-sourced?
No one can help you and it would be a pleasure to help you.

@igor-lemon
Copy link
Member

@Tarektouati It's strange.
Ok. Can you share me your Docker Compose config?

@Tarektouati
Copy link
Author

Here's the docker-compose file :

version: '3'
services:
  postgres:
    image: 'postgres:9.4'
    volumes:
      - './users.sql:/docker-entrypoint-initdb.d/users.sql'
    restart: always
    environment:
      POSTGRES_PASSWORD: pwd
      POSTGRES_USER: usr
      POSTGRES_DB: db
    ports:
      - '5432:5432'
  dynamodb:
    image: dwmkerr/dynamodb
    restart: always
    ports:
      - '8000:8000'
  svc1:
    image: 'registry/svc1:latest'
    ports:
      - '4001:4001'
  sv2:
    image: 'registry/svc2:latest'
    depends_on:
      - dynamodb
      - svc1
    ports:
      - '4000:4000'
    links:
      - svc1
      - dynamodb
    environment:
      - 'SVC1=http://svc1:4001'
      - 'DYNAMODB_ENDPOINT=http://dynamodb:8000'
  svc3:
    image: 'registry/svc3:latest'
    restart: always
    depends_on:
      - postgres
      - svc1
    ports:
      - '4002:4002'
    links:
      - svc1
      - 'postgres:db'
    environment:
      - 'SVC1=http://svc1:4001'
      - 'POSTGRES_CONNECTIONSTRING=postgres://usr:pwd@db:5432/db'
  svc4:
    image: 'registry/svc4:latest'
    depends_on:
      - svc1
      - svc5
    environment:
      - 'ListenAddress=0.0.0.0:9000'
    ports:
      - '9000:9000'
    links:
      - svc5
      - svc1
      - sv2
  svc5:
    image: 'registry/svc5:latest'
    volumes:
      - '.:/tmp'
    ports:
      - '7000:7000'

Sorry but i had to change the names of services.

@igor-lemon
Copy link
Member

igor-lemon commented Mar 27, 2018

So, it brokes on "svc3" service,

links:
      - svc1
      - 'postgres:db' <--- here

So, I don't know you use "db" alias or not, and maybe you can to change "postgres:db" to "postgres". Links directory is legacy, all containers links between each other by default.
https://docs.docker.com/compose/compose-file/#links

Thanks for config, we'll try to fix this moment too. But right now you can using the temporary fix.

@Tarektouati
Copy link
Author

Tarektouati commented Mar 27, 2018

Okay, thanks for your work and support

@igor-lemon
Copy link
Member

Thank you. We'll make a hot fix in 1-2 days.

@igor-lemon
Copy link
Member

Fixed. Please check.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants