Skip to content

Commit

Permalink
Comment out ports in docker-compose
Browse files Browse the repository at this point in the history
The docker-compose file has been updated to comment out the exposed ports for the openpro-backend and openpro-frontend services. This change prevents these ports from being unnecessarily exposed, improving the security configuration of the application.
  • Loading branch information
claygorman committed Dec 14, 2023
1 parent bbb92fc commit 6ed514a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ services:
depends_on:
- postgresql-db
- createbuckets
#ports:
# - "8080:8080"

openpro-frontend:
image: ghcr.io/openpro-io/openpro-frontend:latest
Expand All @@ -147,6 +149,8 @@ services:
- nginx-proxy-manager-nw
depends_on:
- openpro-backend
#ports:
# - "3000:3000"
```

### docker cli ([click here for more info](https://docs.docker.com/engine/reference/commandline/cli/))
Expand Down

0 comments on commit 6ed514a

Please sign in to comment.