Skip to content

Commit

Permalink
docker changes (mosip#1141)
Browse files Browse the repository at this point in the history
Signed-off-by: Sachin Rana <[email protected]>
  • Loading branch information
sacrana0 authored Jan 24, 2025
1 parent c3430bc commit c113193
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 0 additions & 1 deletion docker-compose/dependent-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ services:

redis:
image: redis:6.0
container_name: redis-server
ports:
- "6379:6379"
restart: always
Expand Down
7 changes: 7 additions & 0 deletions docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ services:
volumes:
- ./init.sql:/docker-entrypoint-initdb.d/init.sql

redis:
image: redis:6.0
ports:
- "6379:6379"
restart: always

mock-identity-system:
image: 'mosipdev/mock-identity-system:release-0.10.1-temp'
user: root
Expand Down Expand Up @@ -39,6 +45,7 @@ services:
depends_on:
- database
- mock-identity-system
- redis

esignet-ui:
image: 'mosipdev/oidc-ui:release-1.5.1-temp'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.kafka.KafkaA
spring.kafka.bootstrap-servers=localhost:9092

## Redis configuration
spring.cache.type=simple
spring.cache.type=redis
spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=

## Database configuration
mosip.esignet.database.hostname=localhost
Expand Down

0 comments on commit c113193

Please sign in to comment.