使用Docker搭建Swagger接口文档工具

1、安装Docker

合集:Docker安装与使用

2、安装Swagger

2.1、方式1

2.1.1、安装swagger-editor

bash 复制代码
docker pull swaggerapi/swagger-editor
docker run -d --name swagger-editor -p 8080:8080 swaggerapi/swagger-editor

2.1.2、安装swagger-ui

bash 复制代码
mkdir -p /root/swaggerapi/swagger-ui/data
bash 复制代码
docker pull swaggerapi/swagger-ui
docker run -d --name swagger-ui -v /root/swaggerapi/swagger-ui/data:/usr/share/nginx/html/data -p 3000:8080 swaggerapi/swagger-ui

2.2、方式2

2.2.1、安装swagger-editor

创建目录;

bash 复制代码
mkdir -p /root/swaggerapi/swagger-editor
cd /root/swaggerapi/swagger-editor/

下载:

bash 复制代码
wget https://github.com/swagger-api/swagger-editor/archive/refs/tags/v4.14.5.tar.gz

解压:

bash 复制代码
tar -xf v4.14.5.tar.gz

项目结构:

bash 复制代码
# 命令:
tree -L 1 swagger-editor/

# 内容:
swagger-editor/
|-- swagger-editor-4.14.5
`-- v4.14.5.tar.gz

1 directory, 1 file

查看Dockerfile文件:

bash 复制代码
# 命令;
cd swagger-editor-4.14.5
cat Dockerfile



# 内容:
FROM nginx:1.27.4-alpine

LABEL maintainer="vladimir.gorej@smartbear.com" \
      org.opencontainers.image.authors="vladimir.gorej@smartbear.com" \
      org.opencontainers.image.url="https://editor.swagger.io" \
      org.opencontainers.image.source="https://github.com/swagger-api/swagger-editor"

ENV BASE_URL="/" \
    PORT="8080"

RUN apk update && apk add --no-cache "tiff>=4.4.0-r4"

COPY nginx.conf /etc/nginx/templates/default.conf.template

COPY ./index.html /usr/share/nginx/html/
COPY ./dist/oauth2-redirect.html /usr/share/nginx/html/
COPY ./dist/* /usr/share/nginx/html/dist/
COPY ./docker-run.sh /docker-entrypoint.d/91-docker-run.sh

RUN chmod +x /docker-entrypoint.d/91-docker-run.sh

EXPOSE 8080

构建镜像:

bash 复制代码
docker build -t swagger-editor:v1 .

启动容器:

bash 复制代码
docker run -d --name swagger-editor -p 8080:8080 swagger-editor:v1

2.2.2、安装swagger-ui

创建目录;

bash 复制代码
mkdir -p /root/swaggerapi/swagger-ui/data
cd /root/swaggerapi/swagger-ui/

下载:

bash 复制代码
wget https://github.com/swagger-api/swagger-ui/archive/refs/tags/v5.21.0.tar.gz

解压:

bash 复制代码
tar -xf v5.21.0.tar.gz

项目结构:

bash 复制代码
# 命令:
tree -L 1 swagger-ui/

# 内容:
swagger-ui/
|-- data
|-- swagger-ui-5.21.0
`-- v5.21.0.tar.gz

2 directories, 1 file

查看Dockerfile文件:

bash 复制代码
# 命令:
cd swagger-ui-5.21.0
cat Dockerfile



# 内容:
# Looking for information on environment variables?
# We don't declare them here --- take a look at our docs.
# https://github.com/swagger-api/swagger-ui/blob/master/docs/usage/configuration.md

FROM nginx:1.27.4-alpine

LABEL maintainer="vladimir.gorej@gmail.com" \
      org.opencontainers.image.authors="vladimir.gorej@gmail.com" \
      org.opencontainers.image.url="docker.swagger.io/swaggerapi/swagger-ui" \
      org.opencontainers.image.source="https://github.com/swagger-api/swagger-ui" \
      org.opencontainers.image.description="SwaggerUI Docker image" \
      org.opencontainers.image.licenses="Apache-2.0"

RUN apk add --update-cache --no-cache "nodejs" "libxml2>=2.13.4-r5" "libexpat>=2.7.0-r0" "libxslt>=1.1.42-r2" "xz-libs>=5.6.3-r1" "c-ares>=1.34.5-r0"

LABEL maintainer="char0n"

ENV API_KEY="**None**" \
    SWAGGER_JSON="/app/swagger.json" \
    PORT="8080" \
    PORT_IPV6="" \
    BASE_URL="/" \
    SWAGGER_JSON_URL="" \
    CORS="true" \
    EMBEDDING="false"

COPY --chown=nginx:nginx --chmod=0666 ./docker/default.conf.template ./docker/cors.conf ./docker/embedding.conf /etc/nginx/templates/

COPY --chmod=0666 ./dist/* /usr/share/nginx/html/
COPY --chmod=0555 ./docker/docker-entrypoint.d/ /docker-entrypoint.d/
COPY --chmod=0666 ./docker/configurator /usr/share/nginx/configurator

# Simulates running NGINX as a non root; in future we want to use nginxinc/nginx-unprivileged.
# In future we will have separate unpriviledged images tagged as v5.1.2-unprivileged.
RUN chmod 777 /usr/share/nginx/html/ /etc/nginx/conf.d/ /etc/nginx/conf.d/default.conf /var/cache/nginx/ /var/run/

EXPOSE 8080

构建镜像:

bash 复制代码
docker build -t swagger-ui:v1 .

启动容器:

bash 复制代码
docker run -d --name swagger-ui -v /root/swaggerapi/swagger-ui/data:/usr/share/nginx/html/data -p 3000:8080 swagger-ui:v1

3、浏览器访问

bash 复制代码
假设当前ip为192.168.186.128
浏览器访问swagger-editor:http://192.168.186.128:8080
浏览器访问swagger-ui:http://192.168.186.128:3000

浏览器访问swagger-editor:

浏览器访问swagger-ui:

4、测试

点击"swagger-editor"页面的"File",选择"Convert and save as JSON":

将下载的文件上传到服务器的"/root/swaggerapi/swagger-ui/data":

在"swagger-editor"页面的输入框填写"/data/openapi.json"或者"url",点击"Explore":

5、详见

bash 复制代码
https://swagger.io/
https://github.com/swagger-api/swagger-editor
https://github.com/swagger-api/swagger-ui

6、其他

合集:API文档

合集:API文档2

相关推荐
半梦半醒*9 小时前
k8s——services资源+pod详解1
linux·运维·docker·kubernetes·centos·负载均衡
JavaLearnerZGQ12 小时前
单机部署docker-nacos(通过下载nacos源码的方式)
运维·docker·容器
草梅友仁13 小时前
RSS Impact 1.17.0 发布与 Docker 服务器迁移经验 | 2025 年第 44 周草梅周报
docker·开源·github
行思理15 小时前
本地用docker开发的php 程序如何部署到阿里云的ecs上
阿里云·docker·容器
脚踏实地的大梦想家16 小时前
【Docker】P5 Docker Compose 实战指南:一键部署 WordPress + MySQL
mysql·docker·容器
醉卧雕龙舫 、17 小时前
一.docker基础概念
docker
帅帅梓1 天前
docker图形化管理
docker·容器·eureka
努力搬砖的咸鱼1 天前
容器之间怎么通信?Docker 网络全解析
网络·docker·云原生·容器
元直数字电路验证1 天前
ASP.NET Core Web APP(MVC)开发中无法全局配置 NuGet 包,该怎么解?
前端·javascript·ui·docker·asp.net·.net