Skip to content

Commit

Permalink
RSWW-142 docker-compose-deploy.yml: switch to images with 'dev' tags
Browse files Browse the repository at this point in the history
Signed-off-by: Paweł Cichowski <[email protected]>
  • Loading branch information
pcichowski committed Jun 9, 2024
1 parent c50314c commit 649a307
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docker-compose-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- backend

front:
image: ghcr.io/microarchitecturovisco/travel-ui:latest
image: ghcr.io/microarchitecturovisco/travel-ui:dev
hostname: front
ports:
- "18453:80"
Expand All @@ -24,7 +24,7 @@ services:
replicas: 2

discovery:
image: ghcr.io/microarchitecturovisco/discovery:latest
image: ghcr.io/microarchitecturovisco/discovery:dev
hostname: discovery
ports:
- "18451:8010"
Expand All @@ -34,7 +34,7 @@ services:
- backend

gateway:
image: ghcr.io/microarchitecturovisco/gateway:latest
image: ghcr.io/microarchitecturovisco/gateway:dev
ports:
- "18469:8082"
depends_on:
Expand All @@ -45,7 +45,7 @@ services:


hotel:
image: ghcr.io/microarchitecturovisco/hotel:latest
image: ghcr.io/microarchitecturovisco/hotel:dev
depends_on:
- rabbitmq
- discovery
Expand All @@ -56,7 +56,7 @@ services:
replicas: 8

offer-provider:
image: ghcr.io/microarchitecturovisco/offer-provider:latest
image: ghcr.io/microarchitecturovisco/offer-provider:dev
depends_on:
- rabbitmq
- discovery
Expand All @@ -67,7 +67,7 @@ services:
replicas: 2

payment:
image: ghcr.io/microarchitecturovisco/payment:latest
image: ghcr.io/microarchitecturovisco/payment:dev
depends_on:
- rabbitmq
- discovery
Expand All @@ -76,7 +76,7 @@ services:
- backend

reservation:
image: ghcr.io/microarchitecturovisco/reservation:latest
image: ghcr.io/microarchitecturovisco/reservation:dev
depends_on:
- rabbitmq
- discovery
Expand All @@ -85,7 +85,7 @@ services:
- backend

transport:
image: ghcr.io/microarchitecturovisco/transport:latest
image: ghcr.io/microarchitecturovisco/transport:dev
depends_on:
- rabbitmq
- discovery
Expand All @@ -105,7 +105,7 @@ services:
- backend

data-generator:
image: ghcr.io/microarchitecturovisco/data-generator:latest
image: ghcr.io/microarchitecturovisco/data-generator:dev
depends_on:
- rabbitmq
- discovery
Expand Down

0 comments on commit 649a307

Please sign in to comment.