8 lines
242 B
Bash
8 lines
242 B
Bash
#!/bin/sh
|
|
# Fix permissions for mounted config files
|
|
if [ -f /opt/ditto/gateway-extension.conf ]; then
|
|
chmod 644 /opt/ditto/gateway-extension.conf
|
|
fi
|
|
# Start the gateway
|
|
exec java -jar /opt/ditto/ditto-gateway-service-3.8.12-allinone.jar
|