Skip to content

Commit

Permalink
Revert "Update docker-compose.yml"
Browse files Browse the repository at this point in the history
This reverts commit 9d439f7.
  • Loading branch information
bidof committed Mar 11, 2024
1 parent 5ba589e commit 954c059
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ services:
MYSQL_DATABASE: questions_db
MYSQL_CHARSET: utf8mb4
MYSQL_COLLATION: utf8mb4_unicode_ci
DB_PORT: 3306
DB_PORT: 3306

ports:
- "3306:3306"
volumes:
Expand All @@ -36,7 +37,7 @@ services:

authservice:
container_name: authservice-${teamname:-wiq_es04c}
image: ghcr.io/arquisoft/wiq_es04c/authservice:latest
image: ghcr.io/arquisoft/${teamname:-wiq_es04c}/authservice:latest
profiles: ["dev", "prod"]
build: ./users/authservice
depends_on:
Expand All @@ -50,7 +51,7 @@ services:

userservice:
container_name: userservice-${teamname:-wiq_es04c}
image: ghcr.io/arquisoft/wiq_es04c/userservice:latest
image: ghcr.io/arquisoft/${teamname:-wiq_es04c}/userservice:latest
profiles: ["dev", "prod"]
build: ./users/userservice
depends_on:
Expand All @@ -64,7 +65,7 @@ services:

gatewayservice:
container_name: gatewayservice-${teamname:-wiq_es04c}
image: ghcr.io/arquisoft/wiq_es04c/gatewayservice:latest
image: ghcr.io/arquisoft/${teamname:-wiq_es04c}/gatewayservice:latest
profiles: ["dev", "prod"]
build: ./gatewayservice
depends_on:
Expand All @@ -80,9 +81,10 @@ services:
AUTH_SERVICE_URL: http://authservice:8002
USER_SERVICE_URL: http://userservice:8001


questionservice:
container_name: questionservice-${teamname:-wiq_es04c}
image: ghcr.io/arquisoft/wiq_es04c/questionservice:latest
image: ghcr.io/arquisoft/${teamname:-wiq_es04c}/questionservice:latest
profiles: ["dev", "prod"]
build: ./questionservice
depends_on:
Expand All @@ -97,7 +99,7 @@ services:

webapp:
container_name: webapp-${teamname:-wiq_es04c}
image: ghcr.io/arquisoft/wiq_es04c/webapp:latest
image: ghcr.io/arquisoft/${teamname:-wiq_es04c}/webapp:latest
profiles: ["dev", "prod"]
build: ./webapp
depends_on:
Expand Down

0 comments on commit 954c059

Please sign in to comment.