diff --git a/.github/data/slack-mappings.json b/.github/data/slack-mappings.json index fe47eee67fae..627333ce810d 100644 --- a/.github/data/slack-mappings.json +++ b/.github/data/slack-mappings.json @@ -144,10 +144,6 @@ "github_user": "josemejias11", "slack_id": "U03RU9U23RQ" }, - { - "github_user": "dcolina", - "slack_id": "U04SKNT3W7L" - }, { "github_user": "melissarojas-dotcms", "slack_id": "U047MRAKREJ" diff --git a/justfile b/justfile index 52a715cec876..22e1dfa4992c 100644 --- a/justfile +++ b/justfile @@ -70,10 +70,14 @@ dev-run-map-dev-paths: dev-run-debug-suspend: ./mvnw -pl :dotcms-core -Pdocker-start,debug-suspend -# Starts the dotCMS Docker container in the background +# Starts the dotCMS Docker container in the background, running on random port dev-start: ./mvnw -pl :dotcms-core -Pdocker-start +# Starts the dotCMS Docker container in the background +dev-start-on-port port="8082": + ./mvnw -pl :dotcms-core -Pdocker-start -Dtomcat.port={{ port }} + # Stops the development Docker container dev-stop: ./mvnw -pl :dotcms-core -Pdocker-stop