Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AubreyHewes/dokku-docker-registry
Simple dockerfile deployment for registry in dokku
https://github.com/AubreyHewes/dokku-docker-registry
docker docker-registry dokku
Last synced: 9 days ago
JSON representation
Simple dockerfile deployment for registry in dokku
- Host: GitHub
- URL: https://github.com/AubreyHewes/dokku-docker-registry
- Owner: AubreyHewes
- Created: 2020-05-28T15:24:27.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-19T19:08:46.000Z (almost 4 years ago)
- Last Synced: 2024-08-01T13:27:52.923Z (3 months ago)
- Topics: docker, docker-registry, dokku
- Language: Dockerfile
- Homepage:
- Size: 1000 Bytes
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A docker registry running in dokku
Just a simple wrapper to run docker registry in dokku
## Configuration
> See the [docker registry documentation](https://docs.docker.com/registry/configuration/), especially setting via env vars.
### Runs with htpasswd auth enabled
This is enabled by default so that the registry is not publicly available.
REGISTRY_AUTH=htpasswd
REGISTRY_AUTH_HTPASSWD_REALM="Registry Realm"
REGISTRY_AUTH_HTPASSWD_PATH=/auth/htpasswd### NOTES
Make sure to mount a volume to `/var/lib/repository` (or your env var location).
If you do not do this data is ephemereal to the container life.