Skip to content

Commit

Permalink
Merge branch 'main' into snyk-upgrade-5364ad43aff0d54873feea82482cb023
Browse files Browse the repository at this point in the history
  • Loading branch information
maidul98 authored Mar 21, 2023
2 parents 3047250 + 77bf857 commit 6cb036b
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 32 deletions.
109 changes: 83 additions & 26 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"@aws-sdk/client-secrets-manager": "^3.267.0",
"@godaddy/terminus": "^4.11.2",
"@octokit/rest": "^19.0.5",
"@sentry/node": "^7.14.0",
"@sentry/tracing": "^7.39.0",
"@sentry/node": "^7.39.0",
"@types/crypto-js": "^4.1.1",
"@types/libsodium-wrappers": "^0.7.10",
"await-to-js": "^3.0.0",
Expand All @@ -31,13 +31,13 @@
"lodash": "^4.17.21",
"mongoose": "^6.7.2",
"nodemailer": "^6.8.0",
"posthog-node": "^2.2.2",
"posthog-node": "^2.5.4",
"query-string": "^7.1.3",
"request-ip": "^3.3.0",
"rimraf": "^3.0.2",
"stripe": "^10.7.0",
"swagger-autogen": "^2.22.0",
"swagger-ui-express": "^4.6.0",
"swagger-ui-express": "^4.6.2",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"typescript": "^4.9.3",
Expand Down
6 changes: 3 additions & 3 deletions docs/integrations/platforms/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ Prerequisites:
Starting your service with the Infisical CLI pulls your secrets from Infisical and injects them into your service.

```dockerfile
CMD ["infisical", "run", "---", "[your service start command]"]
CMD ["infisical", "run", "--", "[your service start command]"]

# example with single single command
CMD ["infisical", "run", "---", "npm", "run", "start"]
CMD ["infisical", "run", "--", "npm", "run", "start"]

# example with multiple commands
CMD ["infisical", "run", "--command", "npm run start && ..."]
Expand All @@ -55,7 +55,7 @@ Head to your project settings in Infisical Cloud to generate an [Infisical Token
## Feed Docker your Infisical Token

```bash
docker run --env INFISICAL_TOKEN=[token]...
docker run --env INFISICAL_TOKEN=[token] [DOCKER-IMAGE]...
```

<Info>
Expand Down

0 comments on commit 6cb036b

Please sign in to comment.