Skip to main content
0 votes
1 answer
26 views

I have successfully removed sensitive values from my docker-compose.yaml using .env and secrets. But the container I'm running (https://github.com/Sync-in/server) also exposes the secrets in ...
Uuugh's user avatar
  • 1
0 votes
0 answers
94 views

I have two containers - one is database and second my app. Each container has attached secret. After running docker compose, secrets for database container is successfully created but for app ...
Josef's user avatar
  • 2,726
0 votes
0 answers
93 views

I am a rookie at Mirth and Docker. I am running several services in a docker composition. I am trying to move passwords, keys and other sensitive items to docker secrets. The transition worked for ...
David Yachabach's user avatar
0 votes
0 answers
204 views

I'm having trouble passing a secret to build a Docker image through GitHub Actions. Even when I set the variable containing the secret as an environment variable, it seems like the secret is not being ...
Esaïe Njongssi's user avatar
0 votes
1 answer
629 views

I don't seem to be able to generate a usable secret with Tokens in ACR. The method outlined here: https://learn.microsoft.com/en-us/azure/openshift/howto-use-acr-with-aro only mentions the Access keys ...
Dom's user avatar
  • 1
0 votes
0 answers
254 views

I have this docker compose file services: trader: build: . secrets: - db_name_env - db_password_env - db_user_env - app_env environment: APP_ENV_FILE: /run/...
minor112's user avatar
2 votes
1 answer
3k views

I am unable to run dockerbuild to mount a secret to pass to the container. This is an example public repo to show the problem in github: https://github.com/inspiraller/docker-node-get-secrets ...
Inspiraller's user avatar
  • 3,802
4 votes
2 answers
2k views

Situation The current (07/2024) docker compose documentation states (falsely) that there is a long-syntax when using 'docker secrets' that can defines the name, uid, gid and mode of the mounted file ...
bjoern-nowak's user avatar
0 votes
1 answer
170 views

In a docker swarm, I need to setup an environment variable to the value of a docker secret. I followed the answer here , but it does not work for me. To try various options, I created a secret called ...
juan noguera's user avatar
1 vote
1 answer
568 views

I need to pass some secrets to a docker file to build my Windows container image. I learned how not do do it but not how to do it properly. For example, it's unsecure to pass the secret via BUILD-ARG ...
user2896152's user avatar
1 vote
2 answers
399 views

I'm running the command: docker exec -it db psql --user $(< postgres_user.txt) and I'm getting the error: /var/run/postgresql/.s.PGSQL.5432" failed: FATAL: database "my_postgres_user&...
eggroll's user avatar
  • 1,079
0 votes
1 answer
423 views

Here is my dockerfile FROM node:20-alpine3.18 WORKDIR /app COPY package*.json .npmrc ./ RUN --mount=type=secret,id=npmrc \ NPM_TOKEN=$(cat /run/secrets/npmrc) \ npm ci --production COPY . . ...
RulerChen's user avatar
1 vote
3 answers
3k views

I'm trying to use Secrets with Docker Compose Here is my Docker Compose (only the relevant parts): version: "3.8" services: My-Service: build: context: ./.. dockerfile: ./...
Jérôme MEVEL's user avatar
0 votes
0 answers
411 views

I am using a private Github repo in my CodePipeline build, as our Docker container involves using poetry install to pull dependencies during the creation of the image that gets uploaded to ECR. I am ...
Jaygee Lastname's user avatar
0 votes
0 answers
41 views

my swam is inconsistent each time I create something like Networks, Secrets it says that some of us are already exist when it is not the case, I was in swarm that I left for this reason and loose all ...
Gui's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
10