Added aerospike cache service

This commit is contained in:
Luciano Gonçalves 2016-08-20 12:28:45 +01:00
parent fb049ef300
commit 9bd70aadc8
2 changed files with 16 additions and 0 deletions

3
aerospike/Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM aerospike:latest
MAINTAINER Luciano Jr <luciano@lucianojr.com.br>

View File

@ -163,6 +163,18 @@ services:
ports: ports:
- "6379:6379" - "6379:6379"
### Aerospike Container #########################################
aerospike:
build: ./aerospike
volumes_from:
- volumes_data
ports:
- "3000:3000"
- "3001:3001"
- "3002:3002"
- "3003:3003"
### Memcached Container ##################################### ### Memcached Container #####################################
memcached: memcached:
@ -230,5 +242,6 @@ services:
- ./data/redis:/data - ./data/redis:/data
- ./data/neo4j:/var/lib/neo4j/data - ./data/neo4j:/var/lib/neo4j/data
- ./data/mongo:/data/db - ./data/mongo:/data/db
- ./data/aerospike:/opt/aerospike/data
### Add more Containers below ############################### ### Add more Containers below ###############################