Skip to content

Commit

Permalink
Merge pull request #995 from kuzzleio/4.3.3-proposal
Browse files Browse the repository at this point in the history
Release 4.3.3
  • Loading branch information
thomas-mauran committed Jan 27, 2023
2 parents cfd3c68 + 9a6f513 commit d38e335
Show file tree
Hide file tree
Showing 11 changed files with 7,642 additions and 5,063 deletions.
2 changes: 1 addition & 1 deletion .github/actions/e2e-tests/action.yml
Expand Up @@ -19,7 +19,7 @@ runs:
shell: bash
- run: cd test/e2e/run-test && npm ci && cd -
shell: bash
- run: npm run test:e2e -- --backend=${{ inputs.backend_config}} --tag ${{ inputs.branch_name }}
- run: npm run test:e2e -- --backend=${{ inputs.backend_config}} --tag ${{ inputs.branch_name }}-$(date +"%s")
env:
CYPRESS_RECORD_KEY: ${{ inputs.CYPRESS_RECORD_KEY }}
shell: bash
28 changes: 28 additions & 0 deletions docker-compose.yml
@@ -0,0 +1,28 @@
version: "3"

services:
kuzzle:
image: kuzzleio/kuzzle-runner:14
command: node -e '(new (require("kuzzle").Backend)()).start();'
volumes:
- .:/var/app
ports:
- "7512:7512"
depends_on:
- redis
environment:
- kuzzle_services__storageEngine__client__node=http://elasticsearch:9200
- kuzzle_services__storageEngine__commonMapping__dynamic=true
- kuzzle_services__internalCache__node__host=redis
- kuzzle_services__memoryStorage__node__host=redis
- DEBUG=${DEBUG:-none}

redis:
image: redis:5

elasticsearch:
image: kuzzleio/elasticsearch:7
environment:
- ingest.geoip.downloader.enabled=false
ulimits:
nofile: 65536

0 comments on commit d38e335

Please sign in to comment.