marvin.im

Docker

Docker: FAQ - All you need to know about the marvambass Containers

Docker English Linux

Foreword

As you may know, there are a lot Docker Containers out there, you’re able to use. You may have experienced some troubles with some of them.

I started creating my own Dockerfiles around March 2014.

Here are some Answers about my personal build Dockerfiles (but some of them were forked). You’ll recognize them if there start with marvambass/ (which means there are created by the user marvambass - which is me)

Read more...

Docker private Registry mit Authentifizierung

Docker Deutsch Linux

Hallo

da ich auf der Suche war, mein eigenes privates Docker Registry mit Authentifizierung zu betreiben, hier die Ergebnisse:

Das offizielle Image für eine Docker Registry ist einfach registry. Ihr könnt also mittels

 docker run -d -p 5000:5000 -v /tmp:/registry \
 -e 'SETTINGS_FLAVOR=local' -e 'STORAGE_PATH=/registry' \
 -e 'SEARCH_BACKEND=sqlalchemy' registry

eine Registry starten, welche auf allen Interfaces auf Port 5000 lauscht und die Images nach /tmp schreibt.

Die Environment Variable SEARCH_BACKEND definiert das Search-Backend und macht es möglich, das Ihr in eurem Registry nach Images wie im offiziellen Docker Registry suchen könnt. Lasst Ihr diese Variable weg, so funktioniert die Suche nicht.

Read more...
1 of 1