Skip to content

Commit

Permalink
Update port numbers in docker-compose.yml
Browse files Browse the repository at this point in the history
The port numbers for the services in the docker-compose.yml file have been updated. Previously, the services were exposed at ports 5288 and 5280, they are now exposed at ports 8288 and 8280 respectively.
  • Loading branch information
EpicOfficer committed Mar 31, 2024
1 parent dd12e6c commit d7ec171
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ services:
- Redis__ConnectionString=blink3.cache,ssl=false,name=${REDIS_NAME}
- ApiAllowedOrigins__0=${API_ALLOWED_ORIGIN}
ports:
- "5288:8080"
- "8288:8080"
depends_on:
blink3.db:
condition: service_healthy
Expand All @@ -65,6 +65,6 @@ services:
container_name: blink3_web
restart: always
ports:
- "5280:80"
- "8280:80"
depends_on:
- blink3.api

0 comments on commit d7ec171

Please sign in to comment.