-
Notifications
You must be signed in to change notification settings - Fork 212
/
Copy pathdocker-compose.yml
18 lines (18 loc) · 994 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
services:
web:
image: IMAGE_REPLACE_ME
environment:
- BEANSTALK_PORT=80
- PRODUCTION=true
# Internal load balancer
- HONEYCOMB_ENDPOINT=http://refinery.us-east-1.elasticbeanstalk.com:8082
env_file:
- .env
# Generated by .platform/hooks/prebuild/prebuild.sh
- hazelcast.env
network_mode: "host"
stop_grace_period: 2m
restart: on-failure
cap_add:
- CAP_PERFMON
command: sh -c 'java $${JAVA_OPTS} -agentpath:/usr/local/YourKit-JavaProfiler-2024.9/bin/linux-x86-64/libyjpagent.so=port=10001,listen=all --add-modules java.se --add-exports java.base/jdk.internal.ref=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/sun.nio.ch=ALL-UNNAMED --add-opens java.management/sun.management=ALL-UNNAMED --add-opens jdk.management/com.sun.management.internal=ALL-UNNAMED -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -Djdk.attach.allowAttachSelf -server -jar target/instant-standalone.jar'