Skip to content

Commit

Permalink
Corregidas rutas relativas
Browse files Browse the repository at this point in the history
  • Loading branch information
uo289432 committed Apr 30, 2024
1 parent ee05dda commit dfaffb4
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
mongodb:
container_name: mongodb-${teamname:-wiq_es5a}
container_name: mongodb-${teamname:-wiq_es05a}
image: mongo
profiles: ["dev", "prod"]
volumes:
Expand All @@ -12,8 +12,8 @@ services:
- mynetwork

questionservice:
container_name: questionservice-${teamname:-wiq_es5a}
image: ghcr.io/arquisoft/wiq_es5a/questionservice:latest
container_name: questionservice-${teamname:-wiq_es05a}
image: ghcr.io/arquisoft/wiq_es05a/questionservice:latest
profiles: ["dev", "prod"]
build: ./questionservice
ports:
Expand All @@ -25,8 +25,8 @@ services:
- mynetwork

authservice:
container_name: authservice-${teamname:-wiq_es5a}
image: ghcr.io/arquisoft/wiq_es5a/authservice:latest
container_name: authservice-${teamname:-wiq_es05a}
image: ghcr.io/arquisoft/wiq_es05a/authservice:latest
profiles: ["dev", "prod"]
build: ./userservice/authservice
depends_on:
Expand All @@ -39,8 +39,8 @@ services:
MONGODB_URI: mongodb://mongodb:27017/userdb

userservice:
container_name: userservice-${teamname:-wiq_es5a}
image: ghcr.io/arquisoft/wiq_es5a/userservice:latest
container_name: userservice-${teamname:-wiq_es05a}
image: ghcr.io/arquisoft/wiq_es05a/userservice:latest
profiles: ["dev", "prod"]
build: ./userservice/userservice
depends_on:
Expand All @@ -53,8 +53,8 @@ services:
MONGODB_URI: mongodb://mongodb:27017/userdb

gatewayservice:
container_name: gatewayservice-${teamname:-wiq_es5a}
image: ghcr.io/arquisoft/wiq_es5a/gatewayservice:latest
container_name: gatewayservice-${teamname:-wiq_es05a}
image: ghcr.io/arquisoft/wiq_es05a/gatewayservice:latest
profiles: ["dev", "prod"]
build: ./gatewayservice
depends_on:
Expand All @@ -72,8 +72,8 @@ services:
QUESTION_SERVICE_URL: http://questionservice:8003

webapp:
container_name: webapp-${teamname:-wiq_es5a}
image: ghcr.io/arquisoft/wiq_es5a/webapp:latest
container_name: webapp-${teamname:-wiq_es05a}
image: ghcr.io/arquisoft/wiq_es05a/webapp:latest
profiles: ["dev", "prod"]
build: ./webapp
depends_on:
Expand All @@ -82,8 +82,8 @@ services:
- "3000:3000"

prometheus:
image: ghcr.io/arquisoft/wiq_es5a/prometheus:latest
container_name: prometheus-${teamname:-wiq_es5a}
image: ghcr.io/arquisoft/wiq_es05a/prometheus:latest
container_name: prometheus-${teamname:-wiq_es05a}
build: ./monitoring/prometheus
profiles: ["dev", "prod"]
networks:
Expand All @@ -97,8 +97,8 @@ services:


grafana:
image: ghcr.io/arquisoft/wiq_es5a/grafana:latest
container_name: grafana-${teamname:-wiq_es5a}
image: ghcr.io/arquisoft/wiq_es05a/grafana:latest
container_name: grafana-${teamname:-wiq_es05a}
build: ./monitoring/grafana
profiles: ["dev", "prod"]
networks:
Expand Down

0 comments on commit dfaffb4

Please sign in to comment.