Dockerfile构建openresty-vts镜像(基于centos)
下载地址openresty nginx-module-vts nginx-module-stream-sts nginx-module-sts 模块下载zip格式的, tar包有一个无法解压 目录结构12345678910tree.├── Dockerfile├── nginx.conf├── nginx-module-stream-sts-0.1.1.zip├── nginx-module-sts-0.1.1.zip├── nginx-module-vts-0.1.18.zip├── openresty-1.21.4.2.tar.gz├── upstream-default.conf└── vhost-default.conf Dockerfile1234567891011121314151617181920212223242526272829303132333435363738394041424344454647FROM centos:7 AS openresty-vts-buildADD openresty-*.tar.gz /usr/local/src/COPY...
Dockerfile构建openresty-vts镜像(基于alpine)
下载地址openresty nginx-module-vts nginx-module-stream-sts nginx-module-sts 模块下载zip格式的, tar包有一个无法解压 目录结构12345678910tree.├── Dockerfile├── nginx.conf├── nginx-module-stream-sts-0.1.1.zip├── nginx-module-sts-0.1.1.zip├── nginx-module-vts-0.1.18.zip├── openresty-1.21.4.2.tar.gz├── upstream-default.conf└── vhost-default.conf Dockerfile1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950FROM alpine:latest AS openresty-vts-buildADD openresty-*.tar.gz...