mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 16:19:37 +01:00
abfafc29f1
Signed-off-by: Ziming Zhang <zziming@vmware.com>
30 lines
679 B
YAML
30 lines
679 B
YAML
version: '2'
|
|
services:
|
|
registry:
|
|
image: goharbor/registry-photon:__version__
|
|
restart: always
|
|
volumes:
|
|
- /data/registry:/storage
|
|
- ./common/config/registry/:/etc/registry/
|
|
- /etc/core/ca/ca.crt:/etc/registry/root.crt
|
|
ports:
|
|
- 5000:5000
|
|
command:
|
|
["serve", "/etc/registry/config.yml"]
|
|
postgres:
|
|
image: goharbor/harbor-db:__version__
|
|
restart: always
|
|
volumes:
|
|
- /data/database:/var/lib/postgresql/data:z
|
|
env_file:
|
|
- ./common/config/db/env
|
|
ports:
|
|
- 5432:5432
|
|
redis:
|
|
image: goharbor/redis-photon:4.0
|
|
restart: always
|
|
volumes:
|
|
- /data/redis:/data
|
|
ports:
|
|
- 6379:6379
|