Skip to content

Commit

Permalink
🔧 feat(user-management): Map port 5000 on the host to 5000 on the con…
Browse files Browse the repository at this point in the history
…tainer

The changes in this commit update the port mapping in the `docker-compose.yml` file
for the `big-bear-casaos-user-management` service. The previous mapping of port
7681 on the host to 7681 on the container has been changed to map port 5000 on
the host to 5000 on the container. This change is necessary to ensure the
user management service is accessible on the correct port.
  • Loading branch information
dragonfire1119 committed Nov 27, 2024
1 parent 847f47f commit 0e0a97e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Apps/big-bear-casaos-user-management/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ services:
# D-Bus socket for system communication and service discovery
- /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket

# Map port 7681 on the host to port 7681 on the container
# Map port 5000 on the host to port 5000 on the container
ports:
- "5000:5000"

Expand Down

0 comments on commit 0e0a97e

Please sign in to comment.