Skip to content

Instantly share code, notes, and snippets.

@songfei1983
Created June 22, 2020 04:47
Show Gist options
  • Save songfei1983/c4c0d28b6ec1bc03f289afe608aa4e21 to your computer and use it in GitHub Desktop.
Save songfei1983/c4c0d28b6ec1bc03f289afe608aa4e21 to your computer and use it in GitHub Desktop.
aerospike amc aql
version: "3"
services:
aerospike:
image: aerospike
ports:
- "3000:3000"
volumes:
- ./data:/opt/aerpsike/data
- ./conf:/etc/aerpsike
command: [ "--config-file","/etc/aerospike/aerospike.conf"]
ulimits:
nproc: 65535
nofile:
soft: 64000
hard: 64000
restart: always
amc:
image: aerospike/amc
ports:
- "8081:8081"
depends_on:
- aerospike
aql:
image: aerospike/aerospike-tools
depends_on:
- aerospike
command: aql -h aerospike --no-config-file
tty: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment