diff --git a/trigger/.env.example b/trigger/.env.example index 35ebb4b..1ab3687 100644 --- a/trigger/.env.example +++ b/trigger/.env.example @@ -79,6 +79,7 @@ RUN_REPLICATION_CLICKHOUSE_URL=http://default:password@clickhouse:8123 # - When deploying to production, you will have to change these, especially the password and URL # - See the docs for more information: https://trigger.dev/docs/self-hosting/docker#registry-setup DOCKER_REGISTRY_URL=localhost:5000 +DOCKER_REGISTRY_NAMESPACE= DOCKER_REGISTRY_USERNAME=registry-user DOCKER_REGISTRY_PASSWORD=very-secure-indeed diff --git a/trigger/docker-compose.aws.yaml b/trigger/docker-compose.aws.yaml index 37c1478..298675b 100644 --- a/trigger/docker-compose.aws.yaml +++ b/trigger/docker-compose.aws.yaml @@ -224,6 +224,7 @@ services: DOCKER_HOST: tcp://docker-proxy:2375 DOCKER_RUNNER_NETWORKS: webapp,supervisor DOCKER_REGISTRY_URL: ${DOCKER_REGISTRY_URL:-localhost:5000} + DEPLOY_REGISTRY_NAMESPACE: ${DOCKER_REGISTRY_NAMESPACE:-redplanethq} DOCKER_REGISTRY_USERNAME: ${DOCKER_REGISTRY_USERNAME:-} DOCKER_REGISTRY_PASSWORD: ${DOCKER_REGISTRY_PASSWORD:-} DOCKER_AUTOREMOVE_EXITED_CONTAINERS: 0 diff --git a/trigger/docker-compose.yaml b/trigger/docker-compose.yaml index 09699d7..f86af26 100644 --- a/trigger/docker-compose.yaml +++ b/trigger/docker-compose.yaml @@ -53,6 +53,7 @@ services: APP_LOG_LEVEL: info DEV_OTEL_EXPORTER_OTLP_ENDPOINT: ${DEV_OTEL_EXPORTER_OTLP_ENDPOINT:-http://localhost:8030/otel} DEPLOY_REGISTRY_HOST: ${DOCKER_REGISTRY_URL:-localhost:5000} + DEPLOY_REGISTRY_NAMESPACE: ${DOCKER_REGISTRY_NAMESPACE:-trigger} OBJECT_STORE_BASE_URL: ${OBJECT_STORE_BASE_URL:-http://minio:9000} OBJECT_STORE_ACCESS_KEY_ID: ${OBJECT_STORE_ACCESS_KEY_ID} OBJECT_STORE_SECRET_ACCESS_KEY: ${OBJECT_STORE_SECRET_ACCESS_KEY}