sim-setup 1.0.6-dev.63.1 → 1.0.6-dev.77.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/docker-compose.prod.yml +5 -0
- package/dist/index.js +1266 -14
- package/package.json +7 -5
|
@@ -50,6 +50,11 @@ services:
|
|
|
50
50
|
# different host:port (e.g. wss://socket.example.com).
|
|
51
51
|
- NEXT_PUBLIC_SOCKET_URL=${NEXT_PUBLIC_SOCKET_URL:-}
|
|
52
52
|
- ADMISSION_GATE_MAX_INFLIGHT=${ADMISSION_GATE_MAX_INFLIGHT:-500}
|
|
53
|
+
# Lets a workflow reach a service on the Docker host. Reaching it also
|
|
54
|
+
# requires naming it in EGRESS_ALLOWED_HOSTS; this only makes the name
|
|
55
|
+
# resolve, which it does not on Linux by default.
|
|
56
|
+
extra_hosts:
|
|
57
|
+
- 'host.docker.internal:host-gateway'
|
|
53
58
|
depends_on:
|
|
54
59
|
db:
|
|
55
60
|
condition: service_healthy
|