2 Commits

Author SHA1 Message Date
ad9ffc89b5 With links and fixed names...
Some checks failed
continuous-integration/drone/push Build encountered an error
2023-05-05 09:09:06 -04:00
f482750d08 this may break everything...
Some checks failed
continuous-integration/drone/push Build encountered an error
2023-05-05 08:47:54 -04:00
4 changed files with 5 additions and 4 deletions

View File

@@ -179,7 +179,7 @@ steps:
commands:
- docker compose pull
- docker compose build --no-cache
- docker compose down
- docker compose rm --stop .
- docker compose up --wait
volumes:
- name: env

View File

@@ -23,5 +23,4 @@ WORKDIR /home/node/app
COPY package*.json ./
RUN yarn install --frozen-lockfile --production
COPY --from=0 /home/node/app/dist .
EXPOSE 80
CMD ["node","server/index.js"]

View File

@@ -22,7 +22,7 @@ services:
- ROUTE_PREFIX=${ROUTE_PREFIX}
- LOGIN_ROUTE=${LOGIN_ROUTE}
- RESET_ROUTE=${RESET_ROUTE}
- DB_HOST=${SERVICE_NAME}_${DB_TYPE}
- DB_HOST=${CONTAINER_PREFIX}-${SERVICE_NAME}_${DB_TYPE}
- DB_USER=${DB_USER}
- DB_PASS=${DB_PASS}
- DB_NAME=${DB_NAME}
@@ -46,6 +46,8 @@ services:
- docknet
restart: unless-stopped
image: node
links:
- auth-service_mongo:${CONTAINER_PREFIX}-${SERVICE_NAME}_${DB_TYPE}
depends_on:
- auth-service_mongo
networks:

View File

@@ -1,6 +1,6 @@
{
"name": "@mifi/auth",
"version": "0.0.13",
"version": "0.0.15",
"author": "mifi (Mike Fitzpatrick)",
"license": "MIT",
"scripts": {