-
👋 Welcome!We’re using Discussions as a place to connect with other members of our community. We hope that you'll use this space to:
To get started, comment below with an introduction of yourself and tell us why you joined this community. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
Hello, web:
build: .
command: sh -c "
./manage.py migrate &&
./manage.py collectstatic --no-input --verbosity 0 --clear &&
gunicorn scancodeio.wsgi:application --bind :8000 --timeout 600 --workers 8"
env_file:
- docker.env
expose:
- 8000
volumes:
- /etc/scancodeio/:/etc/scancodeio/
- workspace:/var/scancodeio/workspace/
- static:/var/scancodeio/static/
depends_on:
- db
restart: always
deploy:
resources:
limits:
cpus: 2
memory: 4096m
reservations:
memory: 512m |
Beta Was this translation helpful? Give feedback.
-
Hello, I'm a newbie, and as I've understood, while starting a new project, the Docker URL provided points to Docker Hub and all the images uploaded there. I was wondering if I could provide a URL for referring to an image in another private image repository, hosted in a private network, such as Harbor. Harbor is private image repository that can be hosted and managed. Is it possible to use Scancode.io with that? P.S. I think I've disturbed an ancient thread. Sorry in advance! |
Beta Was this translation helpful? Give feedback.
Support for private Docker registry added in #1098
See https://scancodeio.readthedocs.io/en/latest/faq.html#how-to-fetch-files-from-private-sources-and-protected-by-credentials and https://scancodeio.readthedocs.io/en/latest/application-settings.html#scancodeio-skopeo-credentials
@19csa55 could you give it a try and let me know it that approach works for you?