diff --git a/Makefile b/Makefile index 2352e51348..a5a87dfbc7 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ up-dev-metrics: docker compose -f docker-compose.dev.yml --profile metrics up --build up-prod: - docker-compose -f docker-compose.prod.yml up --build + docker compose -f docker-compose.prod.yml up --build down: docker compose -f docker-compose.dev.yml down diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index 5c3661cb7a..623ed5dc22 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -9,7 +9,7 @@ services: condition: service_healthy redis: condition: service_started - image: infisical/infisical:latest-postgres + image: infisical/infisical:latest # PIN THIS TO A SPECIFIC TAG pull_policy: always env_file: .env ports: diff --git a/docs/self-hosting/guides/automated-bootstrapping.mdx b/docs/self-hosting/guides/automated-bootstrapping.mdx index 3c2186eb9e..6c3671df90 100644 --- a/docs/self-hosting/guides/automated-bootstrapping.mdx +++ b/docs/self-hosting/guides/automated-bootstrapping.mdx @@ -247,9 +247,9 @@ curl -X POST \ "projectDescription": "A project created via API", "slug": "new-project-slug", "template": "default", - "type": "SECRET_MANAGER" + "type": "secret-manager" }' \ - https://your-infisical-instance.com/api/v2/projects + https://your-infisical-instance.com/api/v1/projects ``` ## Important Notes