forked from kuzzleio/kuzzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-armhf.yml
44 lines (41 loc) · 1.32 KB
/
test-armhf.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
version: '3'
services:
kuzzle:
image: kuzzleio/core-dev-armhf:2
command: /run-test-arm.sh
volumes:
- "..:/var/app"
- "./scripts/run-test-arm.sh:/run-test-arm.sh"
cap_add:
- SYS_PTRACE
depends_on:
- redis
- elasticsearch
environment:
- kuzzle_services__storageEngine__client__node=http://elasticsearch:9200
- kuzzle_services__storageEngine__commonMapping__dynamic=true
- kuzzle_services__storageEngine__internalIndex__collections__users__dynamic=true
- kuzzle_services__internalCache__node__host=redis
- kuzzle_services__memoryStorage__node__host=redis
- kuzzle_server__protocols__mqtt__enabled=true
- kuzzle_server__protocols__mqtt__developmentMode=false
- kuzzle_http__accessControlAllowOrigin=localhost
- kuzzle_limits__loginsPerSecond=50
- NODE_ENV=development
- DEBUG=
- SECRETS_FILE_PREFIX=/var/app/
- KUZZLE_FUNCTIONAL_TESTS=${KUZZLE_FUNCTIONAL_TESTS:-test:functional}
# Travis env var must be propagated into the container
- TRAVIS
- TRAVIS_COMMIT
- TRAVIS_JOB_NUMBER
- TRAVIS_BRANCH
- TRAVIS_JOB_ID
- TRAVIS_PULL_REQUEST
- TRAVIS_REPO_SLUG
redis:
image: redis:6
elasticsearch:
image: kuzzleio/elasticsearch:7
ulimits:
nofile: 65536