Skip to content

Commit 563abf7

Browse files
fix: added registry config file (#18)
1 parent 2ca8cac commit 563abf7

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ ADD terraform/ /terraform
1111
ADD packs/ /packs
1212
ADD static/defaults/htpasswd-basic /auth/htpasswd-basic
1313
ADD static/defaults/ngrok.yml /auth/ngrok.yml
14+
ADD static/defaults/registry-config.yml etc/spectro/config.yml
1415

1516
ARG PALETTE_CLI_VERSION
1617
ARG PALETTE_EDGE_VERSION
@@ -23,6 +24,7 @@ ENV REGISTRY_AUTH_HTPASSWD_PATH=/auth/htpasswd-basic
2324
COPY --from=server /registry /usr/local/bin/
2425

2526
RUN adduser -H -u 1002 -D appuser appuser && \
27+
apk update && \
2628
apk add --no-cache bash curl git terraform openssl jq bind-tools wget ca-certificates nano
2729

2830
RUN wget https://software.spectrocloud.com/spectro-registry/v$PALETTE_CLI_VERSION/cli/linux/spectro && \

docs/docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ If you are wanting to build the docker image locally you must provide the the bu
6161

6262

6363
```shell
64-
make build-docker VERSION=3.3.0 EDGE=3.4.3
64+
make build-docker VERSION=3.4.0 EDGE=3.4.3
6565
```
6666

6767
OR
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 0.1
2+
log:
3+
level: debug
4+
storage: inmemory
5+
http:
6+
addr: :5000

0 commit comments

Comments
 (0)