Skip to content

Commit

Permalink
[New] Add docker configurations for development
Browse files Browse the repository at this point in the history
  • Loading branch information
blcham committed Dec 12, 2024
1 parent 237d369 commit 7cd90de
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
services:
record-manager-server:
environment:
security.cors.allowedOrigins: "http://localhost:4173,http://localhost:5173"
6 changes: 6 additions & 0 deletions deploy/keycloak-auth/.dev/dc-record-manager-server--debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
services:
record-manager-server:
ports:
- "127.0.0.1:${JAVA_DEBUG_RECORD_MANAGER_SERVER_PORT:-5005}:5005"
entrypoint:
["java", "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005", "-jar", "/record-manager.jar"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
services:
record-manager-server:
environment:
LOGGING_LEVEL_ROOT: "debug"
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
services:
nginx:
environment:
INTERNAL_RECORD_MANAGER_SERVER_SERVICE: "${INTERNAL_RECORD_MANAGER_SERVER_SERVICE:-http://host.docker.internal:8080}"
extra_hosts:
- "host.docker.internal:host-gateway" # support "http://host.docker.internal" for Linux (Windows/Mac works without it)

0 comments on commit 7cd90de

Please sign in to comment.