-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/167-docker-compose-setup-with-rootless-docker (#169)
* Add network to docker compose and expose ports instead of using network mode host * Unrestrict proxy to accept any connection from 443 for dev purposes * Development now works with rootless Docker * Fix typo * Add comment for context * AJP address is now set to localhost * Rename 'app_network' to 'eft_network' * Use images from registry for docker-compose-prod.yml * Update readme with more detailed information about privileged ports and only allow sp container hostname in proxy conf * Revert test proxy conf and dev docker compose to network mode host, use eclipse-temurin instead of openjdk image because it is deprecated * Add spring boot profile env var to prod docker compose file * Set default value of SB_PROFILE env var to test in app server config --------- Co-authored-by: Giannin <[email protected]>
- Loading branch information
1 parent
aee0a32
commit 7ca7b48
Showing
6 changed files
with
64 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:21 | ||
FROM eclipse-temurin:21 | ||
RUN adduser --no-create-home eft-user | ||
USER eft-user | ||
COPY target . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters