blob: 3db462c826756e69145787064d0420782b6f226e [file] [log] [blame]
alshabibcfb8d722016-06-15 15:17:37 -07001registry:
2 image: registry:2.4.0
3 container_name: registry
4 volumes:
5 - /docker-registry/registry:/var/lib/registry/docker/registry
6 - /docker-registry/conf:/conf
7 ports:
8 - "5000:5000"
alshabib742f0852016-06-17 18:34:17 -07009 restart: unless-stopped
alshabibcfb8d722016-06-15 15:17:37 -070010
11registry-mirror:
12 image: registry:2.4.0
13 container_name: registry-mirror
David K. Bainbridgefac79ca2016-07-28 10:00:44 -070014 environment:
15 - "STANDALONE=false"
16 - "MIRROR_SOURCE=https://registry-1.docker.io"
17 - "MIRROR_SOURCE_INDEX=https://index.docker.io"
alshabibcfb8d722016-06-15 15:17:37 -070018 volumes:
19 - /docker-registry-mirror/registry:/var/lib/registry/docker/registry
20 - /docker-registry-mirror/conf:/conf
alshabibcfb8d722016-06-15 15:17:37 -070021 ports:
22 - "5001:5000"
alshabib28daa4c2016-06-17 15:44:27 -070023 restart: unless-stopped