Skip to content

Commit

Permalink
fix: add container_name in docker compose for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Dec 11, 2024
1 parent 216acb8 commit 913223d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/functional-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
run: |
set -x
cd package
npm install
npm clean-install
features/run-kuzzle-stack.sh
npm run test:functional:${{ inputs.test-set }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_branches.workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
run: |
npm clean-install
npm run build
npm install --omit=dev
npm clean-install --omit=dev
- name: Release
env:
Expand Down
3 changes: 3 additions & 0 deletions features/docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
services:
kuzzle:
image: kuzzleio/kuzzle:2
container_name: kuzzle
command: /run.sh
volumes:
- "./run.sh:/run.sh"
Expand All @@ -24,9 +25,11 @@ services:
- DEBUG=kuzzle:*,-kuzzle:entry-point:protocols:websocket

redis:
container_name: redis
image: redis:5

elasticsearch:
container_name: elasticsearch
build:
dockerfile: Dockerfile
context: ./elasticsearch
Expand Down

0 comments on commit 913223d

Please sign in to comment.