mirror of
https://github.com/apache/cloudstack
synced 2026-08-02 05:26:35 +00:00
* tools: Build docker image from ubuntu 24.04 * docker: run UI with NODE_OPTIONS=--openssl-legacy-provider * docker: add MAVEN_OPTS
26 lines
663 B
Plaintext
26 lines
663 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
|
|
[program:mysqld]
|
|
command=/usr/bin/mysqld_safe
|
|
autostart=true
|
|
autorestart=true
|
|
user=root
|
|
|
|
[program:cloudstack]
|
|
environment=MAVEN_OPTS="--add-opens=java.base/java.lang=ALL-UNNAMED --add-exports=java.base/sun.security.x509=ALL-UNNAMED"
|
|
command=/bin/bash -c "mvn -pl client jetty:run -Dsimulator -Dorg.eclipse.jetty.annotations.maxWait=120"
|
|
directory=/root
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
redirect_stderr=true
|
|
user=root
|
|
|
|
[program:cloudstack-ui]
|
|
environment=NODE_OPTIONS="--openssl-legacy-provider"
|
|
command=/bin/bash -c "npm run serve"
|
|
directory=/root/ui
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
user=root
|