Overview

Full name
docker.io/ionewu/owjdxb
Registry
docker.io
Namespace
ionewu
Repository
owjdxb
Cached tags
10
Last synced
07/06/2026, 05:37 AM

Introduction

OWJDXB 定制 Web 应用镜像,集成业务后端与静态前端,适合特定行业内部管理系统私有化部署。

Details

ionewu/owjdxb 打包特定业务 Web 系统,含后端 API 与前端静态资源。定位为行业 Web 应用,需数据库连接 env 与 uploads volume;K8s Deployment + Ingress 内网部署。

快速启动

docker run -d --name owjdxb \
  -p 8080:8080 \
  -e DB_HOST=mysql:3306 \
  docker.io/ionewu/owjdxb:latest

推荐实践

docker run -d --name owjdxb \
  --restart unless-stopped \
  -p 8080:8080 \
  -v /data/owjdxb:/app/uploads \
  -e DB_HOST=mysql.internal:3306 \
  -e DB_PASSWORD=changeme \
  docker.io/ionewu/owjdxb:1.0.0

核心参数说明

  • -p 8080:8080 — Web/API 端口
  • -e DB_HOST — 后端数据库地址
  • -v .../uploads:... — 业务附件持久化
  • 固定 tag — 业务版本 pin

Kubernetes

apiVersion: apps/v1
kind: Deployment
metadata:
  name: owjdxb
spec:
  replicas: 2
  selector:
    matchLabels:
      app: owjdxb
  template:
    metadata:
      labels:
        app: owjdxb
    spec:
      containers:
        - name: app
          image: docker.io/ionewu/owjdxb:1.0.0
          ports:
            - containerPort: 8080
          envFrom:
            - secretRef:
                name: owjdxb-secrets
          volumeMounts:
            - name: uploads
              mountPath: /app/uploads
      volumes:
        - name: uploads
          persistentVolumeClaim:
            claimName: owjdxb-uploads
---
apiVersion: v1
kind: Service
metadata:
  name: owjdxb
spec:
  selector:
    app: owjdxb
  ports:
    - port: 8080
      targetPort: 8080

MySQL 独立 Service;Ingress 内网访问。

Latest tags (20)

View all 10 tags →
TagArchPushed AtSizeDigestSyncWishAction
docker.io/ionewu/owjdxb
:v4.2.1
linux/amd64
2026/06/10 20:1274.5 MBsha256:34c3df7f7477
docker.io/ionewu/owjdxb
:latest
linux/amd64
2026/06/10 19:5874.5 MBsha256:34c3df7f7477
docker.io/ionewu/owjdxb
:v4.2.1-696
linux/amd64
2026/06/10 19:5774.5 MBsha256:34c3df7f7477
docker.io/ionewu/owjdxb
:v4.1.3
linux/amd64
2026/05/08 11:5774.6 MBsha256:ffad11a47ddc
docker.io/ionewu/owjdxb
:v37
linux/amd64
2025/08/29 17:5973.5 MBsha256:b29e8bd24753
docker.io/ionewu/owjdxb
:v20
linux/amd64
2024/12/04 20:5827.2 MBsha256:e08a60cbf57f
docker.io/ionewu/owjdxb
:v21
linux/amd64
2024/12/04 20:5727.2 MBsha256:14168bde8b74
docker.io/ionewu/owjdxb
:v12
linux/amd64
2024/07/12 18:3327.2 MBsha256:f7baa0dd4e6c
docker.io/ionewu/owjdxb
:v8
linux/amd64
2024/05/22 10:2926.4 MBsha256:d922d6b0603d
docker.io/ionewu/owjdxb
:v5
linux/amd64
2024/05/13 17:0726.4 MBsha256:2383d2b1ad76