2026-07-30 17:26:40 -07:00
2026-07-30 17:26:40 -07:00
2026-07-30 17:26:40 -07:00
2026-07-30 17:26:40 -07:00
2026-07-30 17:36:49 -07:00
2026-07-30 18:46:12 -07:00

mojo-app

An example Mojolicious application.


build docker image

$ docker build -t mojo_app .

serve app

$ docker run --rm -it -p 3000:3000 mojo_app

Visit localhost:3000 with web browser.

serve app with local changes

install dependencies

$ docker run --rm -it -p 3000:3000 -v $PWD:/opt/app --entrypoint carton mojo_app install

start the server

$ docker run --rm -it -p 3000:3000 -v $PWD:/opt/app mojo_app

Visit localhost:3000 with web browser. Changes should load when you reload the page, without having to restart the server.

Description
A sample Mojolicious app created with Docker
Readme 40 KiB
Languages
Perl 64.8%
Dockerfile 19.8%
HTML 15.4%