Skip to content

Commit

Permalink
♻️Added antivirus after rebasing refactoring to main
Browse files Browse the repository at this point in the history
  • Loading branch information
shepilov committed Nov 21, 2024
1 parent 1e494c3 commit 2b2b64a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
1 change: 0 additions & 1 deletion tdrive/backend/node/test/e2e/users/users.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ describe("The /users API", () => {
const json = response.json();
expect(json).toMatchObject({ resources: expect.any(Array) });
const resources = json.resources;
console.log(resources);
expect(resources.length).toBe(0);

});
Expand Down
10 changes: 10 additions & 0 deletions tdrive/docker-compose.dev.deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@ services:
networks:
- tdrive_network

av:
image: clamav/clamav:latest
container_name: av
profiles:
- av
ports:
- 3310:3310
networks:
- tdrive_network

minio:
image: minio/minio
ports:
Expand Down
12 changes: 7 additions & 5 deletions tdrive/docker-compose.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ services:
build:
context: .
dockerfile: docker/tdrive-node/Dockerfile
target: test
volumes:
- ./coverage/:/usr/src/app/coverage/
environment:
Expand All @@ -30,17 +31,18 @@ services:
condition: service_healthy
mongo:
condition: service_healthy
av:
condition: service_healthy
# av:
# condition: service_healthy
# rabbitmq:
# condition: service_started
elasticsearch:
condition: service_healthy
# elasticsearch:
# condition: service_healthy
createbucket:
condition: service_completed_successfully
links:
- mongo
- av
networks:
- tdrive_network
# - rabbitmq

nginx:
Expand Down

0 comments on commit 2b2b64a

Please sign in to comment.