Skip to content

Instantly share code, notes, and snippets.

@Aschen
Created November 22, 2019 09:58
Show Gist options
  • Select an option

  • Save Aschen/b0848ded39b6d432131acf88bebf0921 to your computer and use it in GitHub Desktop.

Select an option

Save Aschen/b0848ded39b6d432131acf88bebf0921 to your computer and use it in GitHub Desktop.
Docker compose Kuzzle v2
version: '3'
services:
kuzzle:
image: kuzzleio/kuzzle:2
ports:
- "7512:7512"
cap_add:
- SYS_PTRACE
depends_on:
- redis
- elasticsearch
environment:
- kuzzle_services__storageEngine__client__node=http://elasticsearch:9200
- kuzzle_services__internalCache__node__host=redis
- kuzzle_services__memoryStorage__node__host=redis
- kuzzle_services__storageEngine__commonMapping__dynamic=true
- NODE_ENV=development
redis:
image: redis:5
elasticsearch:
image: kuzzleio/elasticsearch:7.4.0
ulimits:
nofile: 65536
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment