port changes

api 80 >8080
ux > 8080 >80
This commit is contained in:
2024-07-15 14:57:51 +02:00
parent 66e0c55110
commit ad1990b493
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/bash
# Define the port
PORT=443
PORT=80
# Check if the port is in use and release it if necessary.
echo "Checking if port $PORT is in use..."

View File

@@ -4,7 +4,7 @@ services:
container_name: MIH-API-Hub
command: sh -c "sleep 10s; uvicorn backend.main:app --reload --port=80 --host=0.0.0.0"
ports:
- 80:80
- 8080:8080
volumes:
- .:/app
depends_on:
@@ -41,7 +41,7 @@ services:
build:
context: ./Frontend/patient_manager
ports:
- "443:443"
- "80:80"
depends_on:
- api