Updates for staging
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-05-06 01:15:11 -04:00
parent 50c74fdb71
commit 827bce6e1b
3 changed files with 9 additions and 9 deletions

View File

@@ -193,7 +193,7 @@ steps:
- docker compose -f docker-compose.staging.yml up --wait
volumes:
- name: env
path: /drone/grow/.env
path: /drone/grow/staging.env
- name: dockersock
path: /var/run/docker.sock
- name: dockerconfig

View File

@@ -2,20 +2,20 @@ version: '3.8'
services:
auth-service_mongo:
container_name: ${CONTAINER_PREFIX}-auth-service_mongo
env_file: .env
container_name: ${CONTAINER_PREFIX:-mifi}-auth-service_mongo
env_file: staging.env
networks:
- docknet
volumes:
- '/volume1/docker/labs/auth/mongo:/data/db'
restart: unless-stopped
image: mongo
image: mongo:latest
auth-service:
env_file: .env
env_file: staging.env
build: .
container_name: ${CONTAINER_PREFIX}-auth-service
container_name: ${CONTAINER_PREFIX:-mifi}-auth-service
environment:
- DB_HOST=${CONTAINER_PREFIX}-auth-service_mongo
- DB_HOST=${CONTAINER_PREFIX:-mifi}-auth-service_mongo
labels:
- 'traefik.enable=true'
- 'traefik.http.routers.grow.rule=Host(`${HOST}`) && Path(`${ROUTE_PREFIX}`)'
@@ -27,7 +27,7 @@ services:
networks:
- docknet
restart: unless-stopped
image: node
image: node:20-alpine
depends_on:
- auth-service_mongo
networks:

View File

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