skip to Main Content

How to run multiple JVM params in docker-compose?

I got this list of JVM params from the following answer https://stackoverflow.com/a/35108974/7809534: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9010 -Dcom.sun.management.jmxremote.local.only=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false And I would like to run them in docker-compose. This is what I tried: environment: - JAVA_TOOL_OPTIONS="-Dcom.sun.management.jmxremote" - JAVA_TOOL_OPTIONS="-Dcom.sun.management.jmxremote.port=9010" - JAVA_TOOL_OPTIONS="-Dcom.sun.management.jmxremote.local.only=false" - JAVA_TOOL_OPTIONS="-Dcom.sun.management.jmxremote.authenticate=false"…

VIEW QUESTION

Submitted datetime is converted to "0001-01-01T00:00:00" – Docker

In my Razor Pages .NET Core 3.1 application I have the following simple form <form method="post" id="formReport"> <div class="form-group"> <label asp-for="Parameters.From" class="control-label"></label> <input id="txtFrom" asp-for="Parameters.From" type="text" class="form-control" style="width:90%;" /> </div> <button type="submit" class="btn btn-primary btn-sm" title="Show report"> <i class="far fa-eye"></i>…

VIEW QUESTION

Docker nginx php-fpm not serving php

I'm trying to setup nginx and php-fpm images to work together for a Laravel application. This is my set up: docker-compose.yml version: "3.8" services: server: container_name: nginx build: context: . dockerfile: docker/nginx/Dockerfile volumes: - ./src/public:/var/www/html/public ports: - "8888:80" depends_on: -…

VIEW QUESTION
Back To Top
Search