From 0fea2c0b974135a937d0861a411178e87f7d9fa2 Mon Sep 17 00:00:00 2001 From: chenos Date: Mon, 24 Oct 2022 10:21:25 +0800 Subject: [PATCH] fix: default value of VERDACCIO_URL --- .env.example | 1 + Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 8bce59791f..7d1b19a85a 100644 --- a/.env.example +++ b/.env.example @@ -4,6 +4,7 @@ ADMINER_PORT=10101 DB_MYSQL_PORT=10102 DB_POSTGRES_PORT=10103 VERDACCIO_PORT=10104 +# VERDACCIO_URL=http://host.docker.internal:10104/ ################# NOCOBASE APPLICATION ################# diff --git a/Dockerfile b/Dockerfile index 667391818b..4617ddc1b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM node:16 as builder -ARG VERDACCIO_URL +ARG VERDACCIO_URL=http://host.docker.internal:10104/ RUN apt-get update && apt-get install -y jq WORKDIR /tmp