Hi there
I’m try to install tomcat as docker within pi4
This is the docker Docker Hub I’m try to install with following command
docker run -d --name=tomcat \
-p 8880:8080 \
-v "$DOCKER_CONFIGS/webapps:/usr/local/tomcat" \
--restart=unless-stopped \
tomcat:8-jre11
But I’m getting following error :
docker: Error response from daemon: failed to create shim: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: “catalina.sh”: executable file not found in $PATH: unknown.
What I’m doing?