116 lines
3.4 KiB
YAML
116 lines
3.4 KiB
YAML
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
services:
|
|
registry:
|
|
image: docker.io/bitnami/harbor-registry:2
|
|
environment:
|
|
- REGISTRY_HTTP_SECRET=CHANGEME
|
|
volumes:
|
|
- registry_data:/storage
|
|
- ./config/registry/:/etc/registry/:ro
|
|
registryctl:
|
|
image: docker.io/bitnami/harbor-registryctl:2
|
|
environment:
|
|
- CORE_SECRET=CHANGEME
|
|
- JOBSERVICE_SECRET=CHANGEME
|
|
- REGISTRY_HTTP_SECRET=CHANGEME
|
|
volumes:
|
|
- registry_data:/storage
|
|
- ./config/registry/:/etc/registry/:ro
|
|
- ./config/registryctl/config.yml:/etc/registryctl/config.yml:ro
|
|
postgresql:
|
|
image: docker.io/bitnami/postgresql:14
|
|
container_name: harbor-db
|
|
environment:
|
|
- POSTGRESQL_PASSWORD=bitnami
|
|
- POSTGRESQL_DATABASE=registry
|
|
volumes:
|
|
- postgresql_data:/bitnami/postgresql
|
|
core:
|
|
image: docker.io/bitnami/harbor-core:2
|
|
container_name: harbor-core
|
|
depends_on:
|
|
- registry
|
|
environment:
|
|
- CORE_KEY=change-this-key
|
|
- _REDIS_URL_CORE=redis://redis:6379/0
|
|
- SYNC_REGISTRY=false
|
|
- CHART_CACHE_DRIVER=redis
|
|
- _REDIS_URL_REG=redis://redis:6379/1
|
|
- PORT=8080
|
|
- LOG_LEVEL=info
|
|
- EXT_ENDPOINT=http://reg.mydomain.com
|
|
- DATABASE_TYPE=postgresql
|
|
- REGISTRY_CONTROLLER_URL=http://registryctl:8080
|
|
- POSTGRESQL_HOST=postgresql
|
|
- POSTGRESQL_PORT=5432
|
|
- POSTGRESQL_DATABASE=registry
|
|
- POSTGRESQL_USERNAME=postgres
|
|
- POSTGRESQL_PASSWORD=bitnami
|
|
- POSTGRESQL_SSLMODE=disable
|
|
- REGISTRY_URL=http://registry:5000
|
|
- TOKEN_SERVICE_URL=http://core:8080/service/token
|
|
- HARBOR_ADMIN_PASSWORD=bitnami
|
|
- CORE_SECRET=CHANGEME
|
|
- JOBSERVICE_SECRET=CHANGEME
|
|
- ADMIRAL_URL=
|
|
- CORE_URL=http://core:8080
|
|
- JOBSERVICE_URL=http://jobservice:8080
|
|
- REGISTRY_STORAGE_PROVIDER_NAME=filesystem
|
|
- REGISTRY_CREDENTIAL_USERNAME=harbor_registry_user
|
|
- REGISTRY_CREDENTIAL_PASSWORD=harbor_registry_password
|
|
- READ_ONLY=false
|
|
- RELOAD_KEY=
|
|
volumes:
|
|
- core_data:/data
|
|
- ./config/core/app.conf:/etc/core/app.conf:ro
|
|
- ./config/core/private_key.pem:/etc/core/private_key.pem:ro
|
|
portal:
|
|
image: docker.io/bitnami/harbor-portal:2
|
|
container_name: harbor-portal
|
|
depends_on:
|
|
- core
|
|
jobservice:
|
|
image: docker.io/bitnami/harbor-jobservice:2
|
|
container_name: harbor-jobservice
|
|
depends_on:
|
|
- redis
|
|
- core
|
|
environment:
|
|
- CORE_SECRET=CHANGEME
|
|
- JOBSERVICE_SECRET=CHANGEME
|
|
- CORE_URL=http://core:8080
|
|
- REGISTRY_CONTROLLER_URL=http://registryctl:8080
|
|
- REGISTRY_CREDENTIAL_USERNAME=harbor_registry_user
|
|
- REGISTRY_CREDENTIAL_PASSWORD=harbor_registry_password
|
|
volumes:
|
|
- jobservice_data:/var/log/jobs
|
|
- ./config/jobservice/config.yml:/etc/jobservice/config.yml:ro
|
|
redis:
|
|
image: docker.io/bitnami/redis:latest
|
|
environment:
|
|
# ALLOW_EMPTY_PASSWORD is recommended only for development.
|
|
- ALLOW_EMPTY_PASSWORD=yes
|
|
harbor-nginx:
|
|
image: docker.io/bitnami/nginx:latest
|
|
container_name: nginx
|
|
volumes:
|
|
- ./config/proxy/nginx.conf:/opt/bitnami/nginx/conf/nginx.conf:ro
|
|
ports:
|
|
- '80:8080'
|
|
depends_on:
|
|
- postgresql
|
|
- registry
|
|
- core
|
|
- portal
|
|
volumes:
|
|
registry_data:
|
|
driver: local
|
|
core_data:
|
|
driver: local
|
|
jobservice_data:
|
|
driver: local
|
|
postgresql_data:
|
|
driver: local
|