act with docker compose and secrets #1478
-
In my services:
my-app:
image: my-docker-image
build:
context: .
secrets:
- secret_npmrc
secrets:
secret_npmrc:
file: $HOME/.npmrc to install my private npm packages when building Would it be possible to pass my private token to the docker container spun up by To give more context, I'm able to run my workflows like this: act -v -j release -s NPM_TOKEN=<my_token> and I'd like to somehow pass my |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Please run act -h and read the output carefully. |
Beta Was this translation helpful? Give feedback.
Please run act -h and read the output carefully.
There is an option for a secrets file.