Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker compose #45

Merged
merged 2 commits into from
Nov 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'
services:

frontend:
image: delishad21/frontend-peerprep:milestone7
image: peerprep38/frontend-peerprep:milestone7
container_name: g38-frontend
env_file:
- .env
Expand All @@ -27,7 +27,7 @@ services:
restart: no

g38-user-service:
image: delishad21/user-service:milestone7
image: peerprep38/user-service:milestone7
container_name: user-service
env_file:
- .env # Loads environment variables from .env file
Expand Down Expand Up @@ -55,7 +55,7 @@ services:
restart: no

g38-question-service:
image: delishad21/question-service:milestone7
image: peerprep38/question-service:milestone7
container_name: question-service
env_file:
- .env # Loads environment variables from .env file
Expand All @@ -77,7 +77,7 @@ services:
- "6379:6379"

g38-matching-service:
image: delishad21/matching-service:milestone7
image: peerprep38/matching-service:milestone7
container_name: matching-service
env_file:
- .env # Loads environment variables from .env file
Expand Down Expand Up @@ -120,7 +120,7 @@ services:
restart: no

g38-collaboration-service:
image: delishad21/collaboration-service:milestone7
image: peerprep38/collaboration-service:milestone7
container_name: collaboration-service
env_file:
- .env # Loads environment variables from .env file
Expand Down
Loading