check ci --check

This commit is contained in:
sbriat 2023-02-09 12:52:25 +01:00
parent 907d495176
commit 43824103cc
4 changed files with 34 additions and 11 deletions

View File

@ -16,8 +16,9 @@ test:
services:
- docker:dind
script:
- docker-compose -f docker-compose.ci.yml --env-file ci/.env.ci up -d
- docker-compose -f docker-compose.ci.tools.yml -p user-tools --env-file ci/.env.ci up -d
- sh ci/wait-up.sh
- docker-compose -f docker-compose.ci.service.yml -p user-service --env-file ci/.env.ci up -d
- docker exec -t v3-user sh -c "npm run test:integration:ci"
coverage: /All files[^|]*\|[^|]*\s+([\d\.]+)/
rules:

View File

@ -13,3 +13,8 @@ BROKER_IMAGE=rabbitmq:3-alpine
# POSTGRES
POSTGRES_IMAGE=postgres:15.0
# REDIS
REDIS_IMAGE=redis:7.0-alpine
REDIS_HOST=v3-user-redis
REDIS_PORT=6379

View File

@ -0,0 +1,22 @@
version: '3.8'
services:
api:
container_name: v3-user
build:
dockerfile: ci/Dockerfile
context: .
env_file:
- ci/.env.ci
ports:
- 5001:5001
depends_on:
- db
- broker
networks:
- v3-network
networks:
v3-network:
name: v3-network
external: true

View File

@ -1,18 +1,13 @@
version: '3.8'
services:
api:
container_name: v3-user
build:
dockerfile: ci/Dockerfile
context: .
redis:
container_name: v3-user-redis
image: ${REDIS_IMAGE}
ports:
- 6501:6379
env_file:
- ci/.env.ci
ports:
- 5001:5001
depends_on:
- db
- broker
networks:
- v3-network