Merge branch 'extractTools' into 'main'
simplify test ci --check See merge request v3/service/auth!23
This commit is contained in:
commit
af3a3a84d6
|
@ -3,15 +3,12 @@ SERVICE_URL=0.0.0.0
|
||||||
SERVICE_PORT=5002
|
SERVICE_PORT=5002
|
||||||
|
|
||||||
# PRISMA
|
# PRISMA
|
||||||
DATABASE_URL="postgresql://auth:auth@v3-auth-db:5432/auth?schema=public"
|
DATABASE_URL="postgresql://mobicoop:mobicoop@v3-db:5432/mobicoop?schema=auth"
|
||||||
|
|
||||||
# RABBIT MQ
|
# RABBIT MQ
|
||||||
RMQ_URI=amqp://v3-broker:5672
|
RMQ_URI=amqp://v3-broker:5672
|
||||||
RMQ_EXCHANGE=mobicoop
|
RMQ_EXCHANGE=mobicoop
|
||||||
|
|
||||||
# POSTGRES
|
|
||||||
POSTGRES_IMAGE=postgres:15.0
|
|
||||||
|
|
||||||
# OPA
|
# OPA
|
||||||
OPA_IMAGE=openpolicyagent/opa:0.48.0-rootless
|
OPA_IMAGE=openpolicyagent/opa:0.48.0-rootless
|
||||||
OPA_URL=http://v3-auth-opa:8181/v1/data/
|
OPA_URL=http://v3-auth-opa:8181/v1/data/
|
||||||
|
|
|
@ -3,10 +3,7 @@ SERVICE_URL=0.0.0.0
|
||||||
SERVICE_PORT=5002
|
SERVICE_PORT=5002
|
||||||
|
|
||||||
# PRISMA
|
# PRISMA
|
||||||
DATABASE_URL="postgresql://auth:auth@localhost:5602/auth?schema=public"
|
DATABASE_URL="postgresql://mobicoop:mobicoop@localhost:5432/mobicoop?schema=auth-test"
|
||||||
|
|
||||||
# POSTGRES
|
|
||||||
POSTGRES_IMAGE=postgres:15.0
|
|
||||||
|
|
||||||
# OPA
|
# OPA
|
||||||
OPA_IMAGE=openpolicyagent/opa:0.48.0-rootless
|
OPA_IMAGE=openpolicyagent/opa:0.48.0-rootless
|
||||||
|
|
|
@ -3,7 +3,7 @@ SERVICE_URL=0.0.0.0
|
||||||
SERVICE_PORT=5002
|
SERVICE_PORT=5002
|
||||||
|
|
||||||
# PRISMA
|
# PRISMA
|
||||||
DATABASE_URL="postgresql://auth:auth@v3-auth-db-test:5432/auth?schema=public"
|
DATABASE_URL="postgresql://mobicoop:mobicoop@v3-db:5432/mobicoop?schema=public"
|
||||||
|
|
||||||
# RABBIT MQ
|
# RABBIT MQ
|
||||||
RMQ_URI=amqp://v3-auth-broker:5672
|
RMQ_URI=amqp://v3-auth-broker:5672
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
testlog() {
|
testlog() {
|
||||||
docker logs v3-auth-db-test | grep -q "database system is ready to accept connections"
|
docker logs v3-db | grep -q "database system is ready to accept connections"
|
||||||
}
|
}
|
||||||
|
|
||||||
testlog 2> /dev/null
|
testlog 2> /dev/null
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
version: '3.8'
|
version: '3.8'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
v3-auth-db-test:
|
db:
|
||||||
container_name: v3-auth-db-test
|
container_name: v3-db
|
||||||
image: ${POSTGRES_IMAGE}
|
image: ${POSTGRES_IMAGE}
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_DB: auth
|
POSTGRES_DB: mobicoop
|
||||||
POSTGRES_USER: auth
|
POSTGRES_USER: mobicoop
|
||||||
POSTGRES_PASSWORD: auth
|
POSTGRES_PASSWORD: mobicoop
|
||||||
ports:
|
ports:
|
||||||
- 5602:5432
|
- 5432:5432
|
||||||
networks:
|
networks:
|
||||||
- v3-network
|
- v3-network
|
||||||
|
|
||||||
v3-auth-broker:
|
broker:
|
||||||
container_name: v3-auth-broker
|
container_name: v3-broker
|
||||||
image: ${BROKER_IMAGE}
|
image: ${BROKER_IMAGE}
|
||||||
ports:
|
ports:
|
||||||
- 5672:5672
|
- 5672:5672
|
||||||
|
|
|
@ -14,43 +14,11 @@ services:
|
||||||
command: npm run start:dev
|
command: npm run start:dev
|
||||||
ports:
|
ports:
|
||||||
- ${SERVICE_PORT:-5002}:${SERVICE_PORT:-5002}
|
- ${SERVICE_PORT:-5002}:${SERVICE_PORT:-5002}
|
||||||
depends_on:
|
|
||||||
- v3-auth-db
|
|
||||||
networks:
|
networks:
|
||||||
v3-network:
|
v3-network:
|
||||||
aliases:
|
aliases:
|
||||||
- v3-auth-api
|
- v3-auth-api
|
||||||
|
|
||||||
v3-auth-db:
|
|
||||||
container_name: v3-auth-db
|
|
||||||
image: ${POSTGRES_IMAGE}
|
|
||||||
environment:
|
|
||||||
POSTGRES_DB: auth
|
|
||||||
POSTGRES_USER: auth
|
|
||||||
POSTGRES_PASSWORD: auth
|
|
||||||
ports:
|
|
||||||
- 5502:5432
|
|
||||||
volumes:
|
|
||||||
- .postgresql:/var/lib/postgresql/data:rw
|
|
||||||
networks:
|
|
||||||
v3-network:
|
|
||||||
aliases:
|
|
||||||
- v3-auth-db
|
|
||||||
|
|
||||||
v3-auth-db-test:
|
|
||||||
container_name: v3-auth-db-test
|
|
||||||
image: ${POSTGRES_IMAGE}
|
|
||||||
environment:
|
|
||||||
POSTGRES_DB: auth
|
|
||||||
POSTGRES_USER: auth
|
|
||||||
POSTGRES_PASSWORD: auth
|
|
||||||
ports:
|
|
||||||
- 5602:5432
|
|
||||||
networks:
|
|
||||||
v3-network:
|
|
||||||
aliases:
|
|
||||||
- v3-auth-db-test
|
|
||||||
|
|
||||||
v3-auth-opa:
|
v3-auth-opa:
|
||||||
container_name: v3-auth-opa
|
container_name: v3-auth-opa
|
||||||
image: ${OPA_IMAGE}
|
image: ${OPA_IMAGE}
|
||||||
|
|
Loading…
Reference in New Issue