port changes
api 80 >8080 ux > 8080 >80
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Define the port
|
# Define the port
|
||||||
PORT=443
|
PORT=80
|
||||||
|
|
||||||
# Check if the port is in use and release it if necessary.
|
# Check if the port is in use and release it if necessary.
|
||||||
echo "Checking if port $PORT is in use..."
|
echo "Checking if port $PORT is in use..."
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ services:
|
|||||||
container_name: MIH-API-Hub
|
container_name: MIH-API-Hub
|
||||||
command: sh -c "sleep 10s; uvicorn backend.main:app --reload --port=80 --host=0.0.0.0"
|
command: sh -c "sleep 10s; uvicorn backend.main:app --reload --port=80 --host=0.0.0.0"
|
||||||
ports:
|
ports:
|
||||||
- 80:80
|
- 8080:8080
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -41,7 +41,7 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: ./Frontend/patient_manager
|
context: ./Frontend/patient_manager
|
||||||
ports:
|
ports:
|
||||||
- "443:443"
|
- "80:80"
|
||||||
depends_on:
|
depends_on:
|
||||||
- api
|
- api
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user