Skip to content
This repository has been archived by the owner on Jul 29, 2022. It is now read-only.

Commit

Permalink
fixed REDIS_* env vars to REMOTECV_REDIS_* in examples (#72) [ci skip]
Browse files Browse the repository at this point in the history
Merged without rebuild (it's only documental)
  • Loading branch information
mynameiswhm authored and psyduck787 committed Apr 5, 2017
1 parent 8830bcc commit 6fc60a8
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 25 deletions.
6 changes: 3 additions & 3 deletions configuration_examples/docker-compose/lazy-detector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ services:
links:
- redis:redis
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- REDIS_DATABASE=0
- REMOTECV_REDIS_HOST=redis
- REMOTECV_REDIS_PORT=6379
- REMOTECV_REDIS_DATABASE=0
networks:
- app
redis:
Expand Down
6 changes: 3 additions & 3 deletions configuration_examples/docker-compose/production-swarm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ services:
links:
- redis:redis
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- REDIS_DATABASE=0
- REMOTECV_REDIS_HOST=redis
- REMOTECV_REDIS_PORT=6379
- REMOTECV_REDIS_DATABASE=0
- SENTRY_URL= # put your sentry enpoint here
- LOADER=remotecv_aws.loader
- AWS_ACCESS_KEY_ID= # put your AWS_ACCESS_KEY here
Expand Down
6 changes: 3 additions & 3 deletions configuration_examples/docker-compose/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ services:
links:
- redis:redis
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- REDIS_DATABASE=0
- REMOTECV_REDIS_HOST=redis
- REMOTECV_REDIS_PORT=6379
- REMOTECV_REDIS_DATABASE=0
- SENTRY_URL= # put your sentry enpoint here
- REMOTECV_LOADER=remotecv_aws.loader
- AWS_ACCESS_KEY_ID= # put your AWS_ACCESS_KEY here
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ spec:
- name: remotecv
image: apsl/remotecv:latest
env:
- name: REDIS_HOST
- name: REMOTECV_REDIS_HOST
value: redis
- name: REDIS_PORT
- name: REMOTECV_REDIS_PORT
value: "6379"
- name: REDIS_DATABASE
- name: REMOTECV_REDIS_DATABASE
value: "11"
- name: AWS_ACCESS_KEY_ID
value: "MY_AWS_ACCESS_KEY_ID"
Expand Down
6 changes: 3 additions & 3 deletions docker-compose-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ services:
links:
- redis:redis
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- REDIS_DATABASE=0
- REMOTECV_REDIS_HOST=redis
- REMOTECV_REDIS_PORT=6379
- REMOTECV_REDIS_DATABASE=0
networks:
- app
redis:
Expand Down
6 changes: 3 additions & 3 deletions docker-compose-travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ services:
links:
- redis:redis
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- REDIS_DATABASE=0
- REMOTECV_REDIS_HOST=redis
- REMOTECV_REDIS_PORT=6379
- REMOTECV_REDIS_DATABASE=0
networks:
- app
redis:
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ services:
links:
- redis:redis
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- REDIS_DATABASE=0
- REMOTECV_REDIS_HOST=redis
- REMOTECV_REDIS_PORT=6379
- REMOTECV_REDIS_DATABASE=0
networks:
- app
redis:
Expand Down
8 changes: 4 additions & 4 deletions tutum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ services:
links:
- redis:redis
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- REDIS_DATABASE=0
- REMOTECV_REDIS_HOST=redis
- REMOTECV_REDIS_PORT=6379
- REMOTECV_REDIS_DATABASE=0
networks:
- app
volumes:
tmp:
driver: local
networks:
app:
driver: bridge
driver: bridge

0 comments on commit 6fc60a8

Please sign in to comment.