Coder Social home page Coder Social logo

Comments (7)

jcoupey avatar jcoupey commented on July 25, 2024 1

OK, turns out I had to first go to the package settings at organization level to enable the possibility of creating public packages and not only private ones. Then when looking at the specific package settings it was possible to make the switch.

So AFAICT anyone should be able to access now?

from vroom-docker.

nilsnolde avatar nilsnolde commented on July 25, 2024

you shouldn't need to login at all. what happens if you do docker logout and try to pull?

actually IIRC packages on github might be private by default and @jcoupey might have to enable them to be public. can you have a look at https://github.com/VROOM-Project/vroom-docker/pkgs/container/vroom-docker, there's somewhere settings hidden, I don't have the permissions. it's at least not even downloaded just once, which is pretty suspicious. why can we even see its existence if it's not public though..

from vroom-docker.

sanderbaas avatar sanderbaas commented on July 25, 2024

@nilsnolde when I logout and try to pull I get: Error response from daemon: Head "https://ghcr.io/v2/vroom-project/vroom-docker/manifests/v1.14.0": unauthorized. For the link you provided I get a 404 error.

from vroom-docker.

nilsnolde avatar nilsnolde commented on July 25, 2024

jep cool, then I have permissions to see the package myself (since I'm the maintainer of this repo I guess). which confirms it's marked as private and @jcoupey has to update it to be public.

from vroom-docker.

jcoupey avatar jcoupey commented on July 25, 2024

I can confirm that the Package visibility is set to private at https://github.com/orgs/VROOM-Project/packages/container/vroom-docker/settings ; the problem being I can't change that (below Public it says " Setting is disabled by organization administrators. "). I tried manually unchecking "Inherit access from source repository " or fiddling with other areas, to no avail.

from vroom-docker.

nemosmithasf avatar nemosmithasf commented on July 25, 2024

I'm getting the same error. Just to double check, is migrating from the older version with Docker Compose just a matter of changing the image name (once it goes public)

e.g.


version: "2.4"
services:
  vroom:
    ports:
      - 4999:3000


    image: vroomvrp/vroom-docker:v1.11.0  # CHANGING THIS TO ghcr.io/vroom-project/vroom-docker:v1.14.0
                                                              *****************************************************************


    container_name: vroom
    volumes:
      - ./vroom/:/conf
    environment:
      - VROOM_ROUTER=osrm  # router to use, osrm, valhalla or ors
    depends_on:
      - osrm_car
      - osrm_bike
      - osrm_foot

  # EXAMPLE for OSRM, please consult the repo for details: https://hub.docker.com/r/osrm/osrm-backend/
  osrm_car:
    image: osrm/osrm-backend
    container_name: osrm_car
    restart: always
    ports:
      - 5000
    volumes:
      - ./osrm/osrm_car:/data
      - ./:/source
    command:  bash -c "
      port=5000
      && source /source/osrm/runOSRM.sh"
    
    
  osrm_bike:
    image: osrm/osrm-backend
    container_name: osrm_bike
    restart: always
    ports:
      - 5001
    volumes:
      - ./osrm/osrm_bike:/data
      - ./:/source
    command: bash -c "
      port=5001
      && source /source/osrm/runOSRM.sh"

  osrm_foot:
    image: osrm/osrm-backend
    container_name: osrm_foot
    restart: always
    ports:
      - 5002
    volumes:
      - ./osrm/osrm_foot:/data
      - ./:/source
    command: bash -c "
      port=5002
      && source /source/osrm/runOSRM.sh"
      

from vroom-docker.

nemosmithasf avatar nemosmithasf commented on July 25, 2024

Can confirm this is fixed

from vroom-docker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.