Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 734 Bytes

README.md

File metadata and controls

45 lines (31 loc) · 734 Bytes

bullseye-docker-registry

Configuration

Create .env file

For example

DOCKER_REGISTRY_AUTH_HOST=localhost:5001
BULLSEYE_WEB_URL=http://localhost:3000
BULLSEYE_API_AUTH_TOKEN="please set auth token"
BULLSEYE_RUNNER_NOTIFICATION_URL=http://localhost:8081/images

Generate server certificate for Docker Registry Auth

$ ./generate-sample-certs.sh

Docker Registry & Docker Registry Auth

$ docker-compose up

Usage

login

docker login localhost:5000

tag image (if needed)

docker tag <image_name_to_push> localhost:5000/<username>/<image_name_to_push_on_remote>

push image

docker push localhost:5000/<username>/<image_name_to_push_on_remote>