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

Make a DockerCompose file for using SpaceCloud #1253

Closed
cellerich opened this issue Aug 28, 2020 · 2 comments
Closed

Make a DockerCompose file for using SpaceCloud #1253

cellerich opened this issue Aug 28, 2020 · 2 comments
Labels
enhancement New feature or request good first issue Good for newcomers help wanted Extra attention is needed
Milestone

Comments

@cellerich
Copy link

Describe the bug

Tried to setup Space Cloud with docker-compose. Ended up with an old version.
Latest version on docker hub seems to be v0.15.x

Expected behaviour

Have the newest version available

Actual behaviour

Steps to reproduce

Here is my docker-compose.yaml:

services:
  space-cloud:
    image: spaceuptech/space-cloud
    container_name: spacecloud
    ports:
    - "4122:4122"
    - "4126:4126"
    depends_on:
    - "postgres"
    restart: always
    environment:
      ## The DEV environment lets you use Mission Control (Admin UI) without login
      ## Change the dev mode to false if you want a login to your Mission Control UI
      DEV: "true"
      ## Uncomment next lines to change the login credentials of Mission Control UI
      # ADMIN_USER: "admin"
      # ADMIN_PASS: "123"
      # ADMIN_SECRET: "some-secret" # This is the JWT secret used for login authentication in Mission Control
  postgres:
    image: postgres
    container_name: postgres_db
    volumes:
    - "/var/run/postgres/postgres.sock:/var/run/postgres/postgres.sock"
    - db-data:/var/lib/postgresql/data
    ports:
    - 5432:5432
    environment:
      POSTGRES_PASSWORD: admin
    restart: always
  
volumes:
  db-data:

Your environment

  • Space Cloud version: v0.19.1
  • OS: windows (on WSL1 - Ubuntu
  • Kubernetes or Docker: Docker version 19.03.11
  • The client api version (if applicable): v19.0.1
  • Browser (if applicable):

If this bug restricts your use of space-cloud, give it a thumbs up reaction, so that we can determine which bugs need to be fixed immediately.
👍

@YourTechBud YourTechBud added enhancement New feature or request good first issue Good for newcomers help wanted Extra attention is needed labels Aug 28, 2020
@YourTechBud
Copy link
Collaborator

Need to make a new docker compose file for SpaceCloud.

@YourTechBud YourTechBud added this to the v0.21.0 milestone Dec 5, 2020
@YourTechBud YourTechBud changed the title Setting up Space Cloud with Docker compose will server v0.15.x Make a DockerCompose file for using SpaceCloud Dec 5, 2020
@YourTechBud
Copy link
Collaborator

Coming in v0.21.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants