Overview
- Full name
docker.io/tangramor/redmine- Registry
- docker.io
- Namespace
- tangramor
- Repository
- redmine
- Cached tags
- 14
- Last synced
- 07/05/2026, 09:20 PM
Introduction
Redmine 开源项目管理 Web 镜像,Issue 跟踪、甘特图与 Wiki,需 MySQL/PostgreSQL 后端与附件 volume 持久化。
Details
tangramor/redmine 运行 Redmine 开源项目管理系统,Web UI 管理 Issue、里程碑、Wiki 与时间跟踪。定位为项目管理 Web 应用,依赖 MySQL/PostgreSQL 与文件存储;K8s Deployment + Ingress 内网研发协作。
快速启动
docker run -d --name redmine \
-p 3000:3000 \
-e REDMINE_DB_MYSQL=mysql \
docker.io/tangramor/redmine:latest
推荐实践
docker run -d --name redmine \
--restart unless-stopped \
-p 3000:3000 \
-v /data/redmine/files:/usr/src/redmine/files \
-e REDMINE_DB_MYSQL=mysql.internal \
-e REDMINE_DB_PASSWORD=changeme \
docker.io/tangramor/redmine:5.1.0
核心参数说明
-p 3000:3000— Redmine Web UI-e REDMINE_DB_MYSQL— MySQL 后端-v .../files:...— 附件持久化-e REDMINE_DB_PASSWORD— DB 密码(高敏)
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: redmine
spec:
replicas: 1
selector:
matchLabels:
app: redmine
template:
metadata:
labels:
app: redmine
spec:
containers:
- name: redmine
image: docker.io/tangramor/redmine:5.1.0
ports:
- containerPort: 3000
envFrom:
- secretRef:
name: redmine-env
volumeMounts:
- name: files
mountPath: /usr/src/redmine/files
volumes:
- name: files
persistentVolumeClaim:
claimName: redmine-files
---
apiVersion: v1
kind: Service
metadata:
name: redmine
spec:
selector:
app: redmine
ports:
- port: 3000
targetPort: 3000
MySQL 独立 Service;Ingress TLS 与 SMTP 通知配置。
Latest tags (20)
View all 14 tags →| Tag | Arch | Pushed At | Size | Digest | Sync | Wish | Action |
|---|---|---|---|---|---|---|---|
docker.io/tangramor/redmine :latest | linux/amd64 | 2025/03/26 10:47 | 797.5 MB | sha256:809d73ec5a79… | |||
docker.io/tangramor/redmine :5.1.7 | linux/amd64 | 2025/03/26 10:47 | 772.6 MB | sha256:d48114cf3c88… | |||
docker.io/tangramor/redmine :6.0.4 | linux/amd64 | 2025/03/26 10:42 | 797.5 MB | sha256:809d73ec5a79… | |||
docker.io/tangramor/redmine :6.0.2 | linux/amd64 | 2025/01/22 18:08 | 793.5 MB | sha256:628139a09266… | |||
docker.io/tangramor/redmine :5.1.5 | linux/amd64 | 2025/01/22 18:01 | 769.6 MB | sha256:bca9ea3ae650… | |||
docker.io/tangramor/redmine :6.0.1 | linux/amd64 | 2024/11/22 23:29 | 787.7 MB | sha256:0cc05e5eb616… | |||
docker.io/tangramor/redmine :5.1.4 | linux/amd64 | 2024/11/22 23:16 | 769.3 MB | sha256:f07e0781c687… | |||
docker.io/tangramor/redmine :5.0.10 | linux/amd64 | 2024/11/22 23:05 | 775.5 MB | sha256:24fd6beb2504… | |||
docker.io/tangramor/redmine :5.1.2 | linux/amd64 | 2024/08/13 15:12 | 736.2 MB | sha256:ca683514725f… | |||
docker.io/tangramor/redmine :5.0.8 | linux/amd64 | 2024/04/24 18:05 | 743.2 MB | sha256:4c6098c029af… | |||
docker.io/tangramor/redmine :4.2.11 | linux/amd64 | 2024/02/20 09:50 | 457.0 MB | sha256:14cf51d9e458… | |||
docker.io/tangramor/redmine :3.3.3 | linux/amd64 | 2024/02/20 09:48 | 542.5 MB | sha256:0eb49d794159… | |||
docker.io/tangramor/redmine :5.1.1 | linux/amd64 | 2024/01/16 22:24 | 737.8 MB | sha256:715f949936e7… | |||
docker.io/tangramor/redmine :5.0.7 | linux/amd64 | 2024/01/16 22:01 | 744.8 MB | sha256:fe9f81bc40c5… |