harbor/tests/docker-compose.test.yml
DQ a0462f0baa Change the clair container to non root user
Signed-off-by: DQ <dengq@vmware.com>
2019-11-04 11:36:39 +08:00

30 lines
683 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:/data
ports:
- 6379:6379