mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-05 18:20:37 +01:00
22ea7dd91f
add env file template for chart repo server in make/common/config/chartserver update the Makefiles to support build chart repo server add docker file and related build scripts for upstream chart server - chartmuseum update prepare to support generating chart server related configs add docker compose file for the chart server add build/install command options to install with/without chart repo server update install.sh to support chart repo server installation
34 lines
702 B
Smarty
34 lines
702 B
Smarty
version: '2'
|
|
services:
|
|
ui:
|
|
networks:
|
|
harbor-chartmuseum:
|
|
aliases:
|
|
- harbor-ui
|
|
redis:
|
|
networks:
|
|
harbor-chartmuseum:
|
|
aliases:
|
|
- redis
|
|
chartmuseum:
|
|
container_name: chartmuseum
|
|
image: vmware/chartmuseum-photon:__chartmuseum_version__
|
|
restart: always
|
|
cpu_quota: 150000
|
|
networks:
|
|
- harbor-chartmuseum
|
|
depends_on:
|
|
- redis
|
|
volumes:
|
|
- /data/chart_storage:/chart_storage:z
|
|
logging:
|
|
driver: "syslog"
|
|
options:
|
|
syslog-address: "tcp://127.0.0.1:1514"
|
|
tag: "chartmuseum"
|
|
env_file:
|
|
./common/config/chartserver/env
|
|
networks:
|
|
harbor-chartmuseum:
|
|
external: false
|