v3 was recently released which broke the integration tests. Update them to use the correct config file. Set the major version to prevent this from happening when v4 is released.
10 lines
136 B
Docker
10 lines
136 B
Docker
FROM registry:3
|
|
|
|
COPY boot.sh .
|
|
|
|
RUN ln -s /shared/certs /certs
|
|
|
|
HEALTHCHECK --interval=1s CMD pgrep registry
|
|
|
|
ENTRYPOINT ["./boot.sh"]
|