mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01:00
7713764aec
This commit is to move all the images of harbor from vmware to goharbor
40 lines
781 B
Smarty
40 lines
781 B
Smarty
version: '2'
|
|
services:
|
|
ui:
|
|
networks:
|
|
harbor-clair:
|
|
aliases:
|
|
- harbor-ui
|
|
jobservice:
|
|
networks:
|
|
- harbor-clair
|
|
registry:
|
|
networks:
|
|
- harbor-clair
|
|
postgresql:
|
|
networks:
|
|
harbor-clair:
|
|
aliases:
|
|
- harbor-db
|
|
clair:
|
|
networks:
|
|
- harbor-clair
|
|
container_name: clair
|
|
image: goharbor/clair-photon:__clair_version__
|
|
restart: always
|
|
cpu_quota: 50000
|
|
depends_on:
|
|
- postgresql
|
|
volumes:
|
|
- ./common/config/clair/config.yaml:/etc/clair/config.yaml:z
|
|
logging:
|
|
driver: "syslog"
|
|
options:
|
|
syslog-address: "tcp://127.0.0.1:1514"
|
|
tag: "clair"
|
|
env_file:
|
|
./common/config/clair/clair_env
|
|
networks:
|
|
harbor-clair:
|
|
external: false
|