Skip to content

Commit

Permalink
Merge pull request #339 from dimoibiehg/master
Browse files Browse the repository at this point in the history
fix (hotelReservation): "permission denied" caused by entrypoints of microservices
  • Loading branch information
cdelimitrou authored Jun 27, 2024
2 parents 07bb6e7 + 0d49cb4 commit ce015fe
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions hotelReservation/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:
- LOG_LEVEL
build: .
image: deathstarbench/hotel-reservation:latest
entrypoint: ./frontend
entrypoint: frontend
ports:
- "5000:5000"
depends_on:
Expand All @@ -47,7 +47,7 @@ services:
- LOG_LEVEL
build: .
image: deathstarbench/hotel-reservation:latest
entrypoint: ./profile
entrypoint: profile
depends_on:
- mongodb-profile
- memcached-profile
Expand All @@ -69,7 +69,7 @@ services:
- LOG_LEVEL
build: .
image: deathstarbench/hotel-reservation:latest
entrypoint: ./search
entrypoint: search
depends_on:
- consul
restart: always
Expand All @@ -89,7 +89,7 @@ services:
- LOG_LEVEL
build: .
image: deathstarbench/hotel-reservation:latest
entrypoint: ./geo
entrypoint: geo
depends_on:
- mongodb-geo
- consul
Expand All @@ -110,7 +110,7 @@ services:
- LOG_LEVEL
build: .
image: deathstarbench/hotel-reservation:latest
entrypoint: ./rate
entrypoint: rate
depends_on:
- mongodb-rate
- memcached-rate
Expand Down Expand Up @@ -165,7 +165,7 @@ services:
- LOG_LEVEL
build: .
image: deathstarbench/hotel-reservation:latest
entrypoint: ./recommendation
entrypoint: recommendation
depends_on:
- mongodb-recommendation
- consul
Expand All @@ -186,7 +186,7 @@ services:
- LOG_LEVEL
build: .
image: deathstarbench/hotel-reservation:latest
entrypoint: ./user
entrypoint: user
depends_on:
- mongodb-user
- consul
Expand All @@ -207,7 +207,7 @@ services:
- LOG_LEVEL
build: .
image: deathstarbench/hotel-reservation:latest
entrypoint: ./reservation
entrypoint: reservation
depends_on:
- mongodb-reservation
- memcached-reserve
Expand Down

0 comments on commit ce015fe

Please sign in to comment.