Commit Graph

54 Commits

Author SHA1 Message Date
Derek McGowan c8fb369af7 Update binaries for 2.7.0
Signed-off-by: Derek McGowan <derek@mcgstyle.net>
2018-12-03 16:34:22 -08:00
David Wu 958adb17f7
Merge pull request #81 from docker/2.6.2-multi-arch
Support arm and arm64 binaries for v2.6.2
2018-12-03 16:20:42 -08:00
Derek McGowan eb58390c83 Support arm and arm64 binaries for v2.6.2
Signed-off-by: Derek McGowan <derek@mcgstyle.net>
2018-11-29 15:35:41 -08:00
Stephen Day 15dbd1a011 Merge pull request #52 from docker/registry-v2.6.2
Update binary for v2.6.2
2017-07-20 15:12:05 -07:00
Derek McGowan bc5d4f15a7 Update binary for v2.6.2
Security fix for CVE-2017-11468

Signed-off-by: Derek McGowan <derek@mcgstyle.net>
2017-07-20 14:40:43 -07:00
Derek McGowan 56fdc8f68c Merge pull request #46 from docker/registry-v2.6.1
Update binary for v2.6.1
2017-07-20 14:26:50 -07:00
Derek McGowan 576b139d6e Update binary for v2.6.1
Fix for forwarded header handling. Also includes updates for health checks to
use stat instead of slower list command.

Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
2017-04-05 16:51:29 -07:00
Derek McGowan ea5f95bc74 Merge pull request #45 from docker/registry-v2.6.1-rc2
Update binary for v2.6.1-rc.2
2017-04-05 16:22:13 -07:00
Derek McGowan 125d5f1ef4 Update binary for v2.6.1-rc.2
Includes updates for health checks to use stat
instead of slower list command.

Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
2017-03-21 14:12:29 -07:00
Derek McGowan 0b4b0ce03d Merge pull request #44 from docker/registry-v2.6.1-rc1
Update binary for 2.6.1-rc.1
2017-03-21 14:07:27 -07:00
Derek McGowan 3baeb0dbb2 Update binary for 2.6.1-rc.1
Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
2017-03-21 12:52:42 -07:00
Derek McGowan 107a2b6818 Merge pull request #39 from docker/registry-v2.6.0
Update binary for v2.6.0
2017-03-21 12:04:52 -07:00
Derek McGowan 4339e10832
Update binary for v2.6.0
Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
2017-01-17 18:32:37 -08:00
Derek McGowan 313b950d56 Merge pull request #37 from docker/registry-v2.6.0-rc.2
Update binary for v2.6.0-rc.2
2017-01-17 18:10:39 -08:00
Derek McGowan dc0a30b78b Update binary for v2.6.0-rc.2
Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
2016-12-20 16:38:03 -08:00
Richard Scothern 13158d0361 Merge pull request #32 from docker/v2.6.0
Registry v2.6.0
2016-11-11 13:29:58 -08:00
Richard Scothern badae459fc Registry v2.6.0
Signed-off-by: Richard Scothern <richard.scothern@gmail.com>
2016-11-11 13:27:28 -08:00
Richard Scothern 327c0413b6 Merge pull request #25 from docker/251
Update registry to v2.5.1
2016-09-12 14:34:30 -07:00
Richard Scothern 3b4a84c1f1 Update registry to v2.5.1
Signed-off-by: Richard Scothern <richard.scothern@gmail.com>
2016-09-12 14:33:40 -07:00
Richard Scothern 8ee3fc45ed Merge pull request #22 from docker/v2.5.0
Registry v2.5.0
2016-07-28 11:27:35 -07:00
Richard Scothern f7992f4a9f Registry v2.5.0
Signed-off-by: Richard Scothern <richard.scothern@gmail.com>
2016-07-28 11:26:40 -07:00
Richard Scothern ac4732789b Registry v2.5.0-rc.2
Signed-off-by: Richard Scothern <richard.scothern@gmail.com>
2016-07-06 14:30:51 -07:00
Richard Scothern 99e37d6bb2 Merge pull request #18 from docker/rc1
Increment rc number to match other projects
2016-06-14 12:54:34 -07:00
Richard Scothern 98cf3dfbb2 Start rc numbers at 1 to match other projects
Signed-off-by: Richard Scothern <richard.scothern@gmail.com>
2016-06-14 12:53:52 -07:00
Richard Scothern 9c5cf81997 Merge pull request #17 from docker/v2.5.0-rc.0-alpine
Update registry binary to v2.5.0.
2016-06-14 12:10:26 -07:00
Richard Scothern 3688baf676 Update registry binary to v2.5.0.
Use Alpine Linux as base image.

Signed-off-by: Richard Scothern <richard.scothern@gmail.com>
2016-06-14 11:59:50 -07:00
Richard Scothern 3e4bd3a928 Merge pull request #14 from docker/entrypoint
Add a startup script (docker-entrypoint.sh) and use it as the entrypo…
2016-06-14 11:11:25 -07:00
Richard Scothern d688e56dc3 Detect yaml or subcommand arguments
Signed-off-by: Richard Scothern <richard.scothern@docker.com>
2016-06-14 11:09:06 -07:00
Richard Scothern 578da7e03c Add a startup script (docker-entrypoint.sh) and use it as the entrypoint for the
official image container.

This conforms to the official image rules to run the container with a shell
without using the --entrypoint flags.

Supports:

[o] docker run registry sh                        # /bin/sh
[o] docker run -v /a:/b registry /b/config.yml    # /bin/registry serve /b/config.yml
[o] docker run registry                           # /bin/registry serve /etc/docker/config.yml
[o] docker run -ti registry -h                    # /bin/registry -h
[o] docker run <command> [args]                   # /bin/registry <command> [args]

Signed-off-by: Richard Scothern <richard.scothern@docker.com>
2016-06-14 11:09:06 -07:00
Richard Scothern c74e503ff3 Merge pull request #15 from docker/v2.4.1
Update registry binary to v2.4.1
2016-05-18 10:45:52 -07:00
Richard Scothern 5cbbc8d1e6 Update registry binary to v2.4.1.
Also revert 740a307b which will be superceded by an init script in v2.5

Signed-off-by: Richard Scothern <richard.scothern@gmail.com>
2016-05-18 10:07:51 -07:00
Olivier Gambier 2223e5fb29 Merge pull request #13 from docker/fix-users
Add serve into the entrypoint to retain backward compatibility so the…
2016-04-14 11:08:44 -07:00
Richard Scothern 740a307bda Add serve into the entrypoint to retain backward compatibility so the registry
can be run as so:
docker run --rm --volume /etc/docker-registry.conf:/etc/docker-registry.conf \
registry:2 /etc/docker-registry.conf

See:
https://github.com/docker/distribution/issues/1631

Signed-off-by: Richard Scothern <richard.scothern@gmail.com>
2016-04-14 10:56:03 -07:00
Olivier Gambier 467e93ea92 Merge pull request #12 from docker/v2.4.0
Update registry binary to version v2.4.0
2016-04-13 11:08:34 -07:00
Richard Scothern 3b41b10642 Update registry binary to version v2.4.0
Add 'serve' to Dockerfile cmd.

Signed-off-by: Richard Scothern <richard.scothern@docker.com>
2016-04-13 11:04:58 -07:00
Richard Scothern b518c35ff6 Merge pull request #11 from docker/v2.3.1
Update registry binary to version v2.3.1
2016-03-08 11:33:40 -08:00
Richard Scothern d7b2c405ae Update registry binary to version v2.3.1 2016-03-08 11:32:31 -08:00
Richard Scothern 93b4a90b49 Merge pull request #10 from docker/v2.3.0
Update registry binary to version 2.3.0
2016-02-04 12:06:00 -08:00
Richard Scothern adffb8e878 Update registry binary to version 2.3.0 2016-02-04 11:48:25 -08:00
Olivier Gambier b1f1951899 Merge pull request #9 from aaronlehmann/debian-jessie
Switch registry library image to debian:jessie
2016-01-28 15:50:09 -08:00
Aaron Lehmann 92bf99bd6d Switch registry library image to debian:jessie
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
2016-01-28 14:53:53 -08:00
Richard Scothern 3aadce6abd Merge pull request #6 from docker/v2.2.1-go1.5
Update registry binary to version 2.2.1, go version 1.5
2015-12-09 13:45:10 -08:00
Richard Scothern bd3fb9d19c Update registry binary to version 2.2.1, go version 1.5
Signed-off-by: Richard Scothern <richard.scothern@gmail.com>
2015-12-09 13:37:24 -08:00
Richard Scothern af287a2a63 Merge pull request #5 from docker/v2.2.0
Update registry binary to version 2.2.0.
2015-11-03 12:35:34 -08:00
Richard Scothern 3b5759583b Update registry binary to version 2.2.0. Update config 2015-11-03 12:02:03 -08:00
Aaron Lehmann d5f65e019f Merge pull request #4 from docker/registry-go-1.4.3
Rebuild registry v2.1.1 to use go 1.4.3
2015-10-05 14:16:36 -07:00
Richard Scothern 6444243043 Rebuild registry v2.1.1 to use go 1.4.3 2015-10-05 14:02:43 -07:00
Olivier Gambier 0258654c74 Merge pull request #3 from RichardScothern/2.1
Update registry binary to version 2.1.1 of registry
2015-08-12 16:36:57 -07:00
Richard Scothern 7b7a1e56e6 Update registry binary to version 2.1.1 of registry 2015-08-12 16:30:13 -07:00
Richard Scothern d5ee820f89 Merge pull request #2 from docker/update-to-v2.1.0
Update registry binary to version 2.1.0 of registry binary
2015-08-11 17:03:08 -07:00