轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像
交易
充值流量¥7起我的订单
文档
工具
提交工单页面收录
jira-servicemanagement

tongdi/jira-servicemanagement

tongdi

下载次数: 0状态:社区镜像维护者:tongdi仓库类型:镜像最近更新:5 年前
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这句话即可:

请先完整阅读并严格遵守以下文档中的全部规则与要求:

https://xuanyuan.cloud/agents.md

在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

镜像简介
下载命令
镜像标签列表与下载命令
使用轩辕镜像,把时间还给真正重要的事。
点击查看

!https://wac-cdn.atlassian.com/dam/jcr:826c97dc-1f5c-4955-bfcc-ea17d6b0c095/jira%20software-icon-gradient-blue.svg?cdnVersion=492!https://wac-cdn.atlassian.com/dam/jcr:8e0905be-0ee7-4652-ba3a-4e3db***/jira%20service%20desk-icon-gradient-blue.svg?cdnVersion=492!https://wac-cdn.atlassian.com/dam/jcr:f89f1ce5-60f1-47c2-b9f5-657de4940d31/jira%20core-icon-gradient-blue.svg?cdnVersion=492

Jira Software Data Center helps the world’s best agile teams plan, track, and release great software at scale.

  • Check out http://hub.docker.com/r/atlassian/jira-software/ on Docker Hub
  • Learn more about Jira Software: https://www.atlassian.com/software/jira

Jira Service Management Data Center is an enterprise ITSM solution that offers high availability, meeting your security and compliance needs so no request goes unresolved.

  • Check out http://hub.docker.com/r/atlassian/jira-servicemanagement/ on Docker Hub
  • Learn more about Jira Service Management: https://www.atlassian.com/software/jira/service-management

Jira Core is a project and task management solution built for business teams.

  • Check out http://hub.docker.com/r/atlassian/jira-core/ on Docker Hub
  • Learn more about Jira Core: https://www.atlassian.com/software/jira/core

Contents

[TOC]

Overview

This Docker container makes it easy to get an instance of Jira Software, Service Management or Core up and running.

Note: Jira Software will be referenced in the examples provided.

Quick Start

For the JIRA_HOME directory that is used to store application data (amongst other things) we recommend mounting a host directory as a https://docs.docker.com/engine/tutorials/dockervolumes/#/data-volumes, or via a named volume if using a docker version >= 1.9.

Additionally, if running Jira in Data Center mode it is required that a shared filesystem is mounted. The mountpoint (inside the container) can be configured with JIRA_SHARED_HOME.

To get started you can use a data volume, or named volumes. In this example we'll use named volumes.

docker volume create --name jiraVolume
docker run -v jiraVolume:/var/atlassian/application-data/jira --name="jira" -d -p 8080:8080 atlassian/jira-software

Success. Jira is now available on http://localhost:8080*

Please ensure your container has the necessary resources allocated to it. We recommend 2GiB of memory allocated to accommodate the application server. See https://confluence.atlassian.com/adminjiraserver071/jira-applications-installation-requirements-802592164.html for further information.

* Note: If you are using docker-machine on Mac OS X, please use open http://$(docker-machine ip default):8080 instead.

Configuring Jira

This Docker image is intended to be configured from its environment; the provided information is used to generate the application configuration files from templates. This allows containers to be repeatably created and destroyed on-the-fly, as required in advanced cluster configurations. Most aspects of the deployment can be configured in this manner; the necessary environment variables are documented below. However, if your particular deployment scenario is not covered by these settings, it is possible to override the provided templates with your own; see the section Advanced Configuration below.

Memory / Heap Size

If you need to override Jira's default memory allocation, you can control the minimum heap (Xms) and maximum heap (Xmx) via the below environment variables.

  • JVM_MINIMUM_MEMORY (default: 384m)

    The minimum heap size of the JVM

  • JVM_MAXIMUM_MEMORY (default: 768m)

    The maximum heap size of the JVM

  • JVM_RESERVED_CODE_CACHE_SIZE (default: 512m)

    The reserved code cache size of the JVM

Reverse Proxy Settings

If Jira is run behind a reverse proxy server (e.g. a load-*** or nginx server) as https://confluence.atlassian.com/adminjiraserver072/integrating-jira-with-apache-using-ssl-828788158.html, then you need to specify extra options to make Jira aware of the setup. They can be controlled via the below environment variables.

  • ATL_PROXY_NAME (default: NONE)

    The reverse proxy's fully qualified hostname. CATALINA_CONNECTOR_PROXYNAME is also supported for backwards compatability.

  • ATL_PROXY_PORT (default: NONE)

    The reverse proxy's port number via which Jira is accessed. CATALINA_CONNECTOR_PROXYPORT is also supported for backwards compatability.

  • ATL_TOMCAT_PORT (default: 8080)

    The port for Tomcat/Jira to listen on. Depending on your container deployment method this port may need to be https://docs.docker.com/v17.09/engine/userguide/networking/default_network/***ding/.

  • ATL_TOMCAT_SCHEME (default: http)

    The protocol via which Jira is accessed. CATALINA_CONNECTOR_SCHEME is also supported for backwards compatability.

  • ATL_TOMCAT_SECURE (default: false)

    Set 'true' if ATL_TOMCAT_SCHEME is 'https'. CATALINA_CONNECTOR_SECURE is also supported for backwards compatability.

  • ATL_TOMCAT_CONTEXTPATH (default: NONE)

    The context path the application is served over. CATALINA_CONTEXT_PATH is also supported for backwards compatability.

The following Tomcat/Catalina options are also supported. For more information, see https://tomcat.apache.org/tomcat-7.0-doc/config/index.html.

  • ATL_TOMCAT_MGMT_PORT (default: 8005)
  • ATL_TOMCAT_MAXTHREADS (default: 100)
  • ATL_TOMCAT_MINSPARETHREADS (default: 10)
  • ATL_TOMCAT_CONNECTIONTIMEOUT (default: 20000)
  • ATL_TOMCAT_ENABLELOOKUPS (default: false)
  • ATL_TOMCAT_PROTOCOL (default: HTTP/1.1)
  • ATL_TOMCAT_ACCEPTCOUNT (default: 10)
  • ATL_TOMCAT_MAXHTTPHEADERSIZE (default: 8192)

JVM configuration

If you need to pass additional JVM arguments to Jira, such as specifying a custom trust store, you can add them via the below environment variable

  • JVM_SUPPORT_RECOMMENDED_ARGS

    Additional JVM arguments for Jira

Example:

docker run -e JVM_SUPPORT_RECOMMENDED_ARGS=-Djavax.net.ssl.trustStore=/var/atlassian/application-data/jira/cacerts -v jiraVolume:/var/atlassian/application-data/jira --name="jira" -d -p 8080:8080 atlassian/jira-software

Jira-specific settings

  • ATL_AUTOLOGIN_COOKIE_AGE (default: ***; two weeks, in seconds)

    The maximum time a user can remain logged-in with 'Remember Me'.

Database configuration

It is optionally possible to configure the database from the environment, avoiding the need to do so through the web startup screen.

The following variables are all must all be supplied if using this feature:

  • ATL_JDBC_URL

    The database URL; this is database-specific.

  • ATL_JDBC_USER

    The database user to connect as.

  • ATL_JDBC_PASSWORD

    The password for the database user.

  • ATL_DB_DRIVER

    The JDBC driver class; supported drivers are:

    • com.microsoft.sqlserver.jdbc.SQLServerDriver
    • com.mysql.jdbc.Driver
    • oracle.jdbc.OracleDriver
    • org.postgresql.Driver

    The driver must match the DB type (see next entry).

  • ATL_DB_TYPE

    The type of database; valid supported values are:

    • mssql
    • mysql
    • oracle10g
    • postgres72

The following variables may be optionally supplied when configuring the database from the environment:

  • ATL_DB_SCHEMA_NAME

    The schema name of the database. Depending on the value of ATL_DB_TYPE, the following default values are used if no schema name is specified:

    • mssql: dbo
    • mysql: public
    • oracle10g: NONE
    • postgres72: public

Note: Due to licensing restrictions Jira does not ship with MySQL or Oracle JDBC drivers. To use these databases you will need to copy a suitable driver into the container and restart it. For example, to copy the MySQL driver into a container named "jira", you would do the following:

docker cp mysql-connector-java.x.y.z.jar jira:/opt/atlassian/jira/lib
docker restart jira

For more information see the page https://confluence.atlassian.com/jirakb/startup-check-jira-database-driver-missing-873872169.html.

Optional database settings

The following variables are for the Tomcat JDBC connection pool, and are optional. For more information on these see: https://tomcat.apache.org/tomcat-7.0-doc/jdbc-pool.html

  • ATL_DB_MAXIDLE (default: 20)
  • ATL_DB_MAXWAITMILLIS (default: 30000)
  • ATL_DB_MINEVICTABLEIDLETIMEMILLIS (default: 5000)
  • ATL_DB_MINIDLE (default: 10)
  • ATL_DB_POOLMAXSIZE (default: 100)
  • ATL_DB_POOLMINSIZE (default: 20)
  • ATL_DB_REMOVEABANDONED (default: true)
  • ATL_DB_REMOVEABANDONEDTIMEOUT (default: 300)
  • ATL_DB_TESTONBORROW (default: false)
  • ATL_DB_TESTWHILEIDLE (default: true)
  • ATL_DB_TIMEBETWEENEVICTIONRUNSMILLIS (default: 30000)

The following settings only apply when using the Postgres driver:

  • ATL_DB_KEEPALIVE (default: true)
  • ATL_DB_SOCKETTIMEOUT (default: 240)

Data Center configuration

This docker image can be run as part of a https://confluence.atlassian.com/enterprise/jira-data-center-472219731.html cluster. You can specify the following properties to start Jira as a Data Center node, instead of manually configuring a cluster.properties file, See https://confluence.atlassian.com/adminjiraserver071/installing-jira-data-center-802592197.html for more information on each property and its possible configuration.

Cluster configuration

Jira Software and Jira Service Management only

  • CLUSTERED (default: false)

    Set 'true' to enable clustering configuration to be used. This will create a cluster.properties file inside the container's $JIRA_HOME directory.

  • JIRA_NODE_ID (default: jira_node_)

    The unique ID for the node. By default, this includes a randomly generated ID unique to each container, but can be overridden with a custom value.

  • JIRA_SHARED_HOME (default: $JIRA_HOME/shared)

    The location of the shared home directory for all Jira nodes. Note: This must be real shared filesystem that is mounted inside the container. Additionally, see the note about UIDs.

  • EHCACHE_PEER_DISCOVERY (default: default)

    Describes how nodes find each other.

  • EHCACHE_LISTENER_HOSTNAME (default: NONE)

    The hostname of the current node for cache communication. Jira Data Center will resolve this this internally if the parameter isn't set.

  • EHCACHE_LISTENER_PORT (default: 40001)

    The port the node is going to be listening to. Depending on your container deployment method this port may need to be https://docs.docker.com/v17.09/engine/userguide/networking/default_network/***ding/.

  • EHCACHE_OBJECT_PORT (default: dynamic)

    The port number on which the remote objects bound in the registry receive calls. This defaults to a free port if not specified. This port may need to be https://docs.docker.com/v17.09/engine/userguide/networking/default_network/***ding/.

  • EHCACHE_LISTENER_SOCKETTIMEOUTMILLIS (default: 2000)

    The default timeout for the Ehcache listener.

  • EHCACHE_MULTICAST_ADDRESS (default: NONE)

    A valid multicast group address. Required when EHCACHE_PEER_DISCOVERY is set to 'automatic' instead of 'default'.

  • EHCACHE_MULTICAST_PORT (default: NONE)

    The dedicated port for the multicast heartbeat traffic. Required when EHCACHE_PEER_DISCOVERY is set to 'automatic' instead of 'default'. Depending on your container deployment method this port may need to be https://docs.docker.com/v17.09/engine/userguide/networking/default_network/***ding/.

  • EHCACHE_MULTICAST_TIMETOLIVE (default: NONE)

    A value between 0 and 255 which determines how far the packets will propagate. Required when EHCACHE_PEER_DISCOVERY is set to 'automatic' instead of 'default'.

  • EHCACHE_MULTICAST_HOSTNAME (default: NONE)

    The hostname or IP of the interface to be used for sending and receiving multicast packets. Required when EHCACHE_PEER_DISCOVERY is set to 'automatic' instead of 'default'.

Shared directory and user IDs

By default the Jira application runs as the user jira, with a UID and GID of 2001. Consequently this UID must have write access to the shared filesystem. If for some reason a different UID must be used, there are a number of options available:

  • The Docker image can be rebuilt with a different UID.
  • Under Linux, the UID can be remapped using https://docs.docker.com/engine/security/userns-remap/.

To preserve strict permissions for certain configuration files, this container starts as root to perform bootstrapping before running Jira under a non-privileged user account. If you wish to start the container as a non-root user, please note that Tomcat configuration will be skipped and a warning will be logged. You may still apply custom configuration in this situation by mounting a custom server.xml file directly to /opt/atlassian/jira/conf/server.xml

Database and Clustering bootstrapping will work as expected when starting this container as a non-root user.

Container configuration

  • SET_PERMISSIONS (default: true)

    Define whether to set home directory permissions on startup. Set to false to disable this behaviour.

Advanced Configuration

As mentioned at the top of this section, the settings from the environment are used to populate the application configuration on the container startup. However in some cases you may wish to customise the settings in ways that are not supported by the environment variables above. In this case, it is possible to modify the base templates to add your own configuration. There are three main ways of doing this; modify our repository to your own image, build a new image from the existing one, or provide new templates at startup. We will briefly outline this methods here, but in practice how you do this will depend on your needs.

Building your own image

  • Clone the Atlassian repository at https://bitbucket.org/atlassian-docker/docker-atlassian-jira/
  • Modify or replace the https://jinja.palletsprojects.com/ templates under config; NOTE: The files must have the .j2 extensions. However you don't have to use template variables if you don't wish.
  • Build the new image with e.g: docker build --tag my-jira-8-image --build-arg JIRA_VERSION=8.x.x .
  • Optionally push to a registry, and deploy.

Build a new image from the existing one

  • Create a new Dockerfile, which starts with the line e.g: FROM atlassian/jira-software:latest.
  • Use a COPY line to overwrite the provided templates.
  • Build, push and deploy the new image as above.

Overwrite the templates at runtime

There are two main ways of doing this:

  • If your container is going to be long-lived, you can create it, modify the installed templates under /opt/atlassian/etc/, and then run it.
  • Alternatively, you can create a volume containing your alternative templates, and mount it over the provided templates at runtime with --volume my-config:/opt/atlassian/etc/.

Logging

By default the Jira logs are written inside the container, under ${JIRA_HOME}/logs/. If you wish to expose this outside the container (e.g. to be aggregated by logging system) this directory can be a data volume or ***d mount. Additionally, Tomcat-specific logs are written to /opt/atlassian/jira/logs/.

Upgrades

To upgrade to a more recent version of Jira you can simply stop the jira container and start a new one based on a more recent image:

docker stop jira
docker rm jira
docker run ... (See above)

As your data is stored in the data volume directory on the host it will still be available after the upgrade.

Note: Please make sure that you don't accidentally remove the jira container and its volumes using the -v option.

Backup

For evaluations you can use the built-in database that will store its files in the Jira home directory. In that case it is sufficient to create a backup archive of the docker volume.

If you're using an external database, you can configure Jira to make a backup automatically each night. This will back up the current state, including the database to the jiraVolume docker volume, which can then be archived. Alternatively you can backup the database separately, and continue to create a backup archive of the docker volume to back up the Jira Home directory.

Read more about data recovery and backups: https://confluence.atlassian.com/adminjiraserver071/backing-up-data-802592964.html

Versioning

The latest tag matches the most recent release of Atlassian Jira Software, Jira Core or Jira Service Management. Thus atlassian/jira-software:latest will use the newest version of Jira available.

Alternatively you can use a specific major, major.minor, or major.minor.patch version of Jira by using a version number tag:

  • atlassian/jira-software:8

  • atlassian/jira-software:8.14

  • atlassian/jira-software:8.14.0

  • atlassian/jira-servicemanagement:4

  • atlassian/jira-servicemanagement:4.14

  • atlassian/jira-servicemanagement:4.14.0

  • atlassian/jira-core:8

  • atlassian/jira-core:8.14

  • atlassian/jira-core:8.14.0

All Jira versions from 7.13+ (Software/Core) / 3.16+ (Service Management) are available.

Note: All Jira Service Management 4.x versions are also available as atlassian/jira-servicedesk. This namespace has been deprecated and versions from 5+ onwards will only be available as atlassian/jira-servicemanagement.

Troubleshooting

These images include built-in scripts to assist in performing common JVM diagnostic tasks.

Thread dumps

/opt/atlassian/support/thread-dumps.sh can be run via docker exec to easily trigger the collection of thread dumps from the containerized application. For example:

docker exec my_container /opt/atlassian/support/thread-dumps.sh

By default this script will collect 10 thread dumps at 5 second intervals. This can be overridden by passing a custom value for the count and interval, by using -c / --count and -i / --interval respectively. For example, to collect 20 thread dumps at 3 second intervals:

docker exec my_container /opt/atlassian/support/thread-dumps.sh --count 20 --interval 3

Thread dumps will be written to $APP_HOME/thread_dumps/<date>.

Note: By default this script will also capture output from top run in 'Thread-mode'. This can be disabled by passing -n / --no-top

Heap dump

/opt/atlassian/support/heap-dump.sh can be run via docker exec to easily trigger the collection of a heap dump from the containerized application. For example:

docker exec my_container /opt/atlassian/support/heap-dump.sh

A heap dump will be written to $APP_HOME/heap.bin. If a file already exists at this location, use -f / --force to overwrite the existing heap dump file.

Manual diagnostics

The jcmd utility is also included in these images and can be used by starting a bash shell in the running container:

docker exec -it my_container /***/bash

Support

For product support, go to:

  • https://support.atlassian.com/jira-software-server/
  • https://support.atlassian.com/jira-service-management-server/
  • https://support.atlassian.com/jira-core-server/

Note that these images are built on the AdoptOpenJDK images. Prior to Jira 7.13 OpenJDK was not a supported platform (3.16 for Service Management). See https://confluence.atlassian.com/jirasoftware/jira-software-release-notes-776821069.html for more information.

Development and testing

See Development for details on setting up a development environment and running tests.

License

Copyright © 2020 Atlassian Corporation Pty Ltd. Licensed under the Apache License, Version 2.0.

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 jira-servicemanagement 镜像标签

docker pull docker.xuanyuan.run/tongdi/jira-servicemanagement:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull tongdi/jira-servicemanagement:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

一键安装

一键安装 Docker

Linux Docker 一键安装

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Apple Container

macOS 原生容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

Unraid

Unraid NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

iKuai 镜像加速

宝塔面板

一键配置镜像源

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

功能

版本功能对比

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 专业版 · 企业版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

账号

失败是否计费

manifest · blob · 计费

申请开发票(企业 / 个人)

企业 · 个人 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
tongdi/jira-servicemanagement
定价查看流量套餐与价格
博客Docker 镜像公告与技术博客
专业版 · 高速稳定拉取镜像
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
50GB 仅 ¥7/年
专业版 · 高速稳定拉取镜像
50GB 仅 ¥7/年
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
用户协议·隐私政策·增值电信业务经营许可证:浙B2-20261007·©2024-2026 源码跳动©2024-2026 杭州源码跳动科技有限公司·商务合作:点击复制邮箱

更多相关 Docker 镜像与资源

以下是 tongdi/jira-servicemanagement 相关的常用 Docker 镜像,适用于 不同场景 等不同场景:

  • atlassian/jira-servicemanagement Docker 镜像说明(Jira Service Management ITSM,适合工单与服务台管理)
  • atlassian/jira-core Docker 镜像说明(Jira Core 项目管理,适合敏捷开发与缺陷跟踪)
  • atlassian/jira-software Docker 镜像说明(Atlassian Jira Software 服务端镜像,适合缺陷跟踪、敏捷看板与研发协作)
  • atlassian/confluence Docker 镜像说明(Atlassian Confluence 团队协作与知识库,适合 Wiki、文档与项目协作)

更多 jira-servicemanagement 镜像推荐

atlassian/jira-servicemanagement logo

atlassian/jira-servicemanagement

atlassian
Jira Service Management是现代IT团队使用的功能齐全的服务台工具。
35 次收藏500万+ 次下载
28 天前更新

查看更多 jira-servicemanagement 相关镜像