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:__version__
    restart: always
    volumes:
      - /data/redis:/var/lib/redis
    ports:
      - 6379:6379