Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 366 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 366 Bytes

Jetty Examples

Jetty://

使用Docker创建项目运行环境

创建镜像文件

    $ docker build -t jetty-demo:1.0.0 .

运行镜像

    $ docker container run -p 3333:8080 -it jetty-demo:1.0.0 /bin/bash