• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question Docker complains about missing command. Am I doing it right?

tekki

New Pleskian
Server operating system version
Ubuntu 18.04.6 LTS
Plesk version and microupdate number
Plesk Obsidian 18.0.45 Update #2
Hi.

I'm trying to deploy a Spring Boot application that works on my existing server using Plesk.

I'll briefly describe what I've done so far:

- Create a standalone .jar file
- Create Dockerfile:
FROM amazoncorretto:17-alpine-jdk
COPY jars/data.jar app.jar
EXPOSE 8080
ENTRYPOINT ["java","-jar","/app.jar"]
- build the image: docker build -t data .
- tested the image locally -> worked.
- tested the image with DockerDesktop -> worked.

- save docker image:
docker save --output data.tar data

- upload the image to my server using the plesk ui (existing installation of plesk with newly installed docker extension)
Something, what i observed here, the name is always something like 'sha256:13e98', no matter what my file is called.
- click the 'Run(local)'
- click the 'ok'

And then i got this error:
Error: {"message":"No command specified"}


I'm very new to Docker containers, and maybe I made a mistake somewhere, so that's how I describe it. Can someone tell me if I'm doing something wrong? I also try it with the CMD instead of ENTERPOINT and also on top. Everything leads to the same message and the message only leads to the information that CMD is missing.

But I have a feeling that it might not be because of that.

Greetings.
 
Dear tekki,

everything looks nice and it should work,
the plesk upload button somehow destroys the image.

We've known about it since at least 2017,
but you can work around plesk like this:
Question - Docker Image

Greetings.
 
Back
Top