本站面向开发者与科研用户,提供开源镜像的搜索和下载加速服务。
所有镜像均来源于原始开源仓库,本站不存储、不修改、不传播任何镜像内容。

fisheye Docker 镜像下载 - 轩辕镜像

fisheye 镜像详细信息和使用指南

fisheye 镜像标签列表和版本信息

fisheye 镜像拉取命令和加速下载

fisheye 镜像使用说明和配置指南

Docker 镜像加速服务 - 轩辕镜像平台

国内开发者首选的 Docker 镜像加速平台

极速拉取 Docker 镜像服务

相关 Docker 镜像推荐

热门 Docker 镜像下载

fisheye
atlassian/fisheye

fisheye 镜像详细信息

fisheye 镜像标签列表

fisheye 镜像使用说明

fisheye 镜像拉取命令

Docker 镜像加速服务

轩辕镜像平台优势

镜像下载指南

相关 Docker 镜像推荐

Fisheye:跨SVN、Git和Perforce仓库进行搜索、监控和跟踪。
9 收藏0 次下载activeatlassian镜像

fisheye 镜像详细说明

fisheye 使用指南

fisheye 配置说明

fisheye 官方文档

Fisheye

跨CVS、SVN、Git、Mercurial和Perforce仓库进行搜索、监控和跟踪。

Crucible

通过同行代码审查发现错误并提高代码质量。

概述

此Docker容器可轻松启动和运行Fisheye或Crucible实例。注意:示例中将以Fisheye为例进行说明。

快速启动

运行以下命令:

docker run -d -p 8080:8080 atlassian/fisheye

应用将在http://localhost:8080可用,配置向导将引导您完成设置。

配置

要通过环境变量配置Fisheye,需设置:FISHEYE_OPTS=-Dfecru.configure.from.env.variables=true,并使用以下变量:

  • FECRU_CONFIGURE_LICENSE_FISHEYE
  • FECRU_CONFIGURE_LICENSE_CRUCIBLE
  • FECRU_CONFIGURE_ADMIN_PASSWORD
  • FECRU_CONFIGURE_DB_TYPE
  • FECRU_CONFIGURE_DB_HOST
  • FECRU_CONFIGURE_DB_PORT
  • FECRU_CONFIGURE_DB_NAME
  • FECRU_CONFIGURE_DB_USER
  • FECRU_CONFIGURE_DB_PASSWORD
  • FECRU_CONFIGURE_DB_MIN_POOL_SIZE
  • FECRU_CONFIGURE_DB_MAX_POOL_SIZE

一个最小化的compose文件示例如下:

version: '2'
services:
  fecru:
    image: atlassian/fisheye:4.8.3
    ports:
    - "8080:8080"
    environment:
      - 'FISHEYE_OPTS=-Dfecru.configure.from.env.variables=true'
      # 许可证
      - 'FECRU_CONFIGURE_LICENSE_FISHEYE=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                         xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                         xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                         xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                         xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                         xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                         xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                         xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                         xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
      - 'FECRU_CONFIGURE_LICENSE_CRUCIBLE=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                          xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                          xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                          xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                          xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                          xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                          xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                          xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                          xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
      # 管理员密码
      - 'FECRU_CONFIGURE_ADMIN_PASSWORD=password'
      # 数据库
      - 'FECRU_CONFIGURE_DB_TYPE=postgresql'
      - 'FECRU_CONFIGURE_DB_HOST=db'
      - 'FECRU_CONFIGURE_DB_PORT=5432'
      - 'FECRU_CONFIGURE_DB_USER=postgres'
      - 'FECRU_CONFIGURE_DB_PASSWORD=password'
  db:
    image: postgres:11
    ports:
    - "5432:5432"
    environment:
    - "POSTGRES_USER=postgres"
    - "POSTGRES_PASSWORD=password"

您还可以使用以下标志挂载Fisheye实例目录:

-v /my_instance_folder:/atlassian/data/fisheye

(如果使用Crucible镜像,则为atlassian/data/crucible)。

注意:由于许可限制,Fisheye不随附MySQL或Oracle JDBC驱动程序。要使用这些数据库,您需要将合适的驱动程序复制到容器中并重启。例如,要将MySQL驱动程序复制到名为“fisheye”的容器中,可执行以下命令:

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

(对应Crucible则为/atlassian/data/crucible/lib/

版本控制

latest标签对应Atlassian Fisheye或Crucible的最新版本。因此,atlassian/fisheye:latest将使用最新版本的Fisheye。

您也可以使用特定的主版本、主.次版本或主.次.补丁版本标签来指定Fisheye版本:

  • atlassian/fisheye:4
  • atlassian/fisheye:4.8
  • atlassian/fisheye:4.8.3
  • atlassian/crucible:4
  • atlassian/crucible:4.8
  • atlassian/crucible:4.8.3

所有4.8.3及以上版本均可用。

支持

如需产品支持,请访问:

  • [***]
  • [***]

用户好评

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

oldzhang的头像

oldzhang

运维工程师

Linux服务器

5

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