diff --git a/Dockerfile b/Dockerfile index af05720..b9e5c20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ COPY build/* /tmp/ # GETTING API FILES FROM WEB RUN if [ "$DOWNLOAD_API_FROM_REMOTE" = "1" ] ; then apt-get update && apt-get install -y curl && \ - curl -L https://github.com/mageddo/bookmark-notes/releases/download/2.11.2/bk-api-2.11.2.tgz > /tmp/bk-api.tgz ; fi + curl -L https://github.com/mageddo/bookmark-notes/releases/download/2.11.3/bk-api-2.11.3.tgz > /tmp/bk-api.tgz ; fi RUN mkdir -p $API_PATH && tar -xvf /tmp/bk-api*.tgz -C $API_PATH && rm -rf /tmp/* COPY bk-api/conf $API_PATH/conf diff --git a/docker-compose.yml b/docker-compose.yml index 50e1a57..92bf5c2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,7 +6,7 @@ services: # Run prod image prod-app-bk: container_name: bookmarks-node-prod - image: defreitas/bookmark-notes:2.11.2 + image: defreitas/bookmark-notes:2.11.3 hostname: bookmarks.mageddo ports: - 3000:3000