Executing shell commands via HTTP server
100K+
Based on Alpine.
Example of Dockerfile for server that gives the current date:
FROM msoap/shell2http
# may be install some alpine packages:
# RUN apk add --no-cache ...
CMD ["/date", "date"]
Build and run container:
docker build -t date-server .
docker run --rm -p 8080:8080 date-server
Content type
Image
Digest
sha256:9d6e15c6e…
Size
5.5 MB
Last updated
almost 2 years ago
docker pull msoap/shell2http