mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-11-29 07:16:19 +01:00
add redis
This commit is contained in:
parent
f1c5fee628
commit
9d607edc6e
@ -75,6 +75,8 @@ The default versions are always a combination of component versions which are co
|
|||||||
| Graphipfs | | ipfs/go-ipfs:v0.4.23 | 172.15.0.16 | 5001 -> 5001 |
|
| Graphipfs | | ipfs/go-ipfs:v0.4.23 | 172.15.0.16 | 5001 -> 5001 |
|
||||||
| Graphpgsql | | postgres | 172.15.0.7 | 5432 -> 5432 |
|
| Graphpgsql | | postgres | 172.15.0.7 | 5432 -> 5432 |
|
||||||
| Dashboard | | portainer/portainer | 172.15.0.25 | 9100 -> 9000 |
|
| Dashboard | | portainer/portainer | 172.15.0.25 | 9100 -> 9000 |
|
||||||
|
| Redis | | bitnami/redis:latest | 172.15.0.18 | 6379 -> 6379 |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
15
compose-files/redis.yml
Normal file
15
compose-files/redis.yml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
redis:
|
||||||
|
image: bitnami/redis:latest
|
||||||
|
ports:
|
||||||
|
- 6379:6379
|
||||||
|
networks:
|
||||||
|
backend:
|
||||||
|
ipv4_address: 172.15.0.18
|
||||||
|
environment:
|
||||||
|
ALLOW_EMPTY_PASSWORD: "yes"
|
||||||
|
volumes:
|
||||||
|
- redis1vol:/bitnami/redis/data
|
||||||
|
volumes:
|
||||||
|
redis1vol:
|
@ -162,6 +162,7 @@ COMPOSE_FILES+=" -f ${COMPOSE_DIR}/dashboard.yml"
|
|||||||
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/aquarius.yml"
|
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/aquarius.yml"
|
||||||
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/elasticsearch.yml"
|
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/elasticsearch.yml"
|
||||||
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/provider.yml"
|
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/provider.yml"
|
||||||
|
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/redis.yml"
|
||||||
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/ganache.yml"
|
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/ganache.yml"
|
||||||
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/ocean_contracts.yml"
|
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/ocean_contracts.yml"
|
||||||
|
|
||||||
@ -187,6 +188,7 @@ while :; do
|
|||||||
#################################################
|
#################################################
|
||||||
--no-provider)
|
--no-provider)
|
||||||
COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/provider.yml/}"
|
COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/provider.yml/}"
|
||||||
|
COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/redis.yml/}"
|
||||||
printf $COLOR_Y'Starting without Provider...\n\n'$COLOR_RESET
|
printf $COLOR_Y'Starting without Provider...\n\n'$COLOR_RESET
|
||||||
;;
|
;;
|
||||||
--with-provider2)
|
--with-provider2)
|
||||||
|
Loading…
Reference in New Issue
Block a user