https://github.com/softonic/docker-registry-s3
Provides a way to configure S3 as a backend in runtime.
https://github.com/softonic/docker-registry-s3
Last synced: 12 months ago
JSON representation
Provides a way to configure S3 as a backend in runtime.
- Host: GitHub
- URL: https://github.com/softonic/docker-registry-s3
- Owner: softonic
- License: other
- Created: 2017-01-11T14:43:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-12-10T08:30:39.000Z (over 6 years ago)
- Last Synced: 2025-04-10T22:44:05.288Z (about 1 year ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 3
- Watchers: 7
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# softonic/registry-s3
[](https://microbadger.com/images/softonic/registry-s3 "Get your own image badge on microbadger.com")
[](https://microbadger.com/images/softonic/registry-s3 "Get your own version badge on microbadger.com")
[](https://microbadger.com/images/softonic/registry-s3 "Get your own commit badge on microbadger.com")
Provides a way to configure S3 as a backend in runtime.
## Usage
```
docker run \
-e AWS_BUCKET=acme-docker \
-e AWS_KEY=YOUR-KEY-HERE \
-e AWS_SECRET=YOUR-SECRET-HERE \
-e AWS_REGION="eu-west-1" \
-e STORAGE_PATH=/registry \
-p 5000:5000 \
softonic/registry-s3
```
### Example usage in Swarm Mode
```
docker service create --name registry-s3 \
-e AWS_BUCKET=acme-docker \
-e AWS_REGION="eu-west-1" \
-e AWS_KEY=YOUR-KEY-HERE \
-e AWS_SECRET=YOUR-SECRET-HERE \
-e STORAGE_PATH=/registry \
-p 5000:5000 \
softonic/registry-s3
```