Containerized docker registry that can be used to deploy a custom docker repository.
1.3K
See comprehensive documentation on Docker's GitHub page. Below is the simple registry.service file to run on systemd / fleet on CoreOS.
[Unit]
Description=registry
After=registry.service
Requires=registry.service
[Service]
User=core
TimeoutStartSec=30m
ExecStartPre=-/usr/bin/docker kill registry
ExecStartPre=-/usr/bin/docker rm registry
ExecStartPre=/usr/bin/docker pull misakai/registry
ExecStart=/usr/bin/docker run --name registry \
-e SETTINGS_FLAVOR=s3 \
-e AWS_BUCKET=misakai-docker \
-e STORAGE_PATH=/registry \
-e AWS_KEY=XXX \
-e AWS_SECRET=XXX \
-e SEARCH_BACKEND=sqlalchemy \
-p 5000:5000 \
misakai/registry
ExecStop=/usr/bin/docker stop registry
NOTE: The container will try to allocate the port 5000. If the port is already taken, find out which container is already using it by running docker ps.
Content type
Image
Digest
sha256:2f4261a8a…
Size
150.5 MB
Last updated
almost 11 years ago
docker pull misakai/registry