harbor/tests/docker-compose.test.yml
Ziming e32649adb4 enhance[cicd] introduce github action for CICD
In order to replace travis.
Implement 5 CI jobs
- UTTEST
- APITEST_DB
- APITEST_LDAP
- OFFLINE
- UI_UT

Signed-off-by: Ziming Zhang <zziming@vmware.com>
2019-12-17 18:36:33 +08:00

30 lines
692 B
YAML

version: '2'
services:
registry:
image: goharbor/registry-photon:__reg_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:/var/lib/redis
ports:
- 6379:6379