make redis work in append mode, otherwise it seems that clouddriver and gate search functionality fails to work.

add rosco and rush to the fun
This commit is contained in:
tomaslin 2015-11-12 15:54:53 -08:00
Родитель 4704b1e5f0
Коммит 6a31f5d219
2 изменённых файлов: 27 добавлений и 1 удалений

Просмотреть файл

@ -3,3 +3,5 @@ CASSANDRA_HOST=127.0.0.1
CASSANDRA_EMBEDDED=true
REDIS_CONNECTION=redis://redis:6379
SERVER_ADDRESS=0.0.0.0
REDIS_PORT=6379
REDIS_HOST=redis

Просмотреть файл

@ -99,6 +99,30 @@ orca:
- "../../config:/root/.spinnaker"
redis:
container_name: redis
command: "redis-server --appendonly yes"
expose:
- "6379"
image: redis
image: redis
rosco:
container_name: rosco
env_file: ./compose.env
environment:
- "SERVICES_RUSH_HOST=rush"
image: spinnaker/rosco
ports:
- "8087:8087"
volumes:
- "../../config:/root/.spinnaker"
links:
- "redis"
- "rush"
rush:
container_name: rush
env_file: ./compose.env
environment:
- "JAVA_OPTS=-javaagent:/opt/rush/lib/jamm-0.2.5.jar"
image: spinnaker/rush
ports:
- "8085:8085"
volumes:
- "../../config:/root/.spinnaker"