2018-07-19 10:47:05 +02:00
|
|
|
version: '2'
|
|
|
|
services:
|
2018-09-12 08:38:29 +02:00
|
|
|
core:
|
2018-07-19 10:47:05 +02:00
|
|
|
networks:
|
|
|
|
harbor-chartmuseum:
|
|
|
|
aliases:
|
2018-09-12 08:38:29 +02:00
|
|
|
- harbor-core
|
2018-07-19 10:47:05 +02:00
|
|
|
redis:
|
|
|
|
networks:
|
|
|
|
harbor-chartmuseum:
|
|
|
|
aliases:
|
|
|
|
- redis
|
|
|
|
chartmuseum:
|
|
|
|
container_name: chartmuseum
|
2018-08-10 08:16:59 +02:00
|
|
|
image: goharbor/chartmuseum-photon:__chartmuseum_version__
|
2018-07-19 10:47:05 +02:00
|
|
|
restart: always
|
2018-11-22 09:21:04 +01:00
|
|
|
cap_drop:
|
|
|
|
- ALL
|
|
|
|
cap_add:
|
|
|
|
- CHOWN
|
|
|
|
- DAC_OVERRIDE
|
|
|
|
- SETGID
|
|
|
|
- SETUID
|
2018-07-19 10:47:05 +02:00
|
|
|
networks:
|
|
|
|
- harbor-chartmuseum
|
2018-10-17 08:27:25 +02:00
|
|
|
dns_search: .
|
2018-07-19 10:47:05 +02:00
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
volumes:
|
|
|
|
- /data/chart_storage:/chart_storage:z
|
2018-08-27 10:18:07 +02:00
|
|
|
- ./common/config/chartserver:/etc/chartserver:z
|
2018-11-09 08:02:59 +01:00
|
|
|
- ./common/config/custom-ca-bundle.crt:/harbor_cust_cert/custom-ca-bundle.crt:z
|
2018-07-19 10:47:05 +02:00
|
|
|
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
|