mirror of
/repos/dotTiddlywiki.git
synced 2025-12-30 07:31:33 +01:00
27 lines
816 B
Plaintext
27 lines
816 B
Plaintext
created: 20150304162605686
|
||
creator: user
|
||
modified: 20161111190534872
|
||
modifier: user
|
||
tags: docker
|
||
title: docker registry
|
||
type: text/vnd.tiddlywiki
|
||
|
||
* http://blog.docker.com/2013/07/how-to-use-your-own-registry/
|
||
* https://github.com/docker/docker-registry
|
||
|
||
```
|
||
docker run \
|
||
-e SETTINGS_FLAVOR=local \
|
||
-e STORAGE_PATH=/registry \
|
||
-p 5000:5000 \
|
||
-v /registry:/registry \
|
||
registry
|
||
```
|
||
|
||
* http://stackoverflow.com/questions/26710153/remote-access-to-a-private-docker-registry
|
||
|
||
; How To Set Up a Private Docker Registry on Ubuntu 14.04
|
||
: https://www.digitalocean.com/community/tutorials/how-to-set-up-a-private-docker-registry-on-ubuntu-14-04
|
||
|
||
; Using Let’s Encrypt and Docker for Automatic SSL
|
||
: http://www.automationlogic.com/using-lets-encrypt-and-docker-for-automatic-ssl/ |