4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
    Type 1 or more characters for results.
    Links per page: 20 50 100
    page 1 / 1
    6 results tagged env x
    • thumbnail
      GitHub - hashicorp/envconsul: Launch a subprocess with environment variables using data from @HashiCorp Consul and Vault.
      January 28, 2022 at 2:05:22 PM GMT+1 - permalink - archive.org - https://github.com/hashicorp/envconsul
      consul entrypoint env var
    • Secrets - Kubernetes

      How to use secret via env var

      February 9, 2019 at 11:09:54 AM GMT+1 - permalink - archive.org - https://kubernetes.io/docs/concepts/configuration/secret/#using-secrets-as-environment-variables
      env k8s secret
    • thumbnail
      GitHub - ahmetb/kubectx: Switch faster between clusters and namespaces in kubectl

      via Doo

      January 17, 2019 at 2:54:28 PM GMT+1 * - permalink - archive.org - https://github.com/ahmetb/kubectx
      ctx env k8s tools
    • thumbnail
      How to Set external Parameters in the Service Container (2.7)
      August 23, 2017 at 11:03:46 AM GMT+2 - permalink - archive.org - https://symfony.com/doc/2.7/configuration/external_parameters.html
      env symfony
    • Note: Expected or not

      I don't know if this shit is expected (normal behaviour or not) but this is annoying

      bash :

      $ toto=tata
      $ echo $toto
      tata

      $ toto='tata'
      $ echo $toto
      tata

      $ toto="tata"
      $ echo $toto
      tata

      avec docker run -e

      $ docker run -e toto=tata -it debian:jessie bash
      root@5de64152ed05:/# echo $toto
      tata

      $ docker run -e toto='tata' -it debian:jessie bash
      root@99a6b62f595c:/# echo $toto
      tata

      $ docker run -e toto="tata" -it debian:jessie bash
      root@ab7581c30734:/# echo $toto
      tata

      avec docker run --env-file:

      $ cat env.file
      toto="tata"
      $ docker run -it --env-file env.file debian:jessie bash
      root@805480de4a52:/# echo $toto
      "tata"

      $ cat env.file
      toto='tata'
      $ docker run -it --env-file env.file debian:jessie bash
      root@004b88cc448d:/# echo $toto
      'tata'

      $ cat env.file
      toto=tata
      $ docker run -it --env-file env.file debian:jessie bash
      root@2ca9908d1cdf:/# echo $toto
      tata

      avec docker compose:

      $ cat docker-compose.yml
      version: '2'
      services:
      foo:
      image: debian:jessie
      container_name: foo
      environment:

      • toto1=tata
      • toto2="tata"
      • toto3='tata'
        command: tail -f /var/log/dmesg

      docker-compose up -d
      docker exec -it foo bash

      root@71a9a886cc24:/# echo $toto1
      tata
      root@71a9a886cc24:/# echo $toto2
      "tata"
      root@71a9a886cc24:/# echo $toto3
      'tata'

      February 2, 2017 at 3:59:09 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?lXfuBg
      docker env value variable
    • The Twelve-Factor App
      December 30, 2016 at 1:10:48 PM GMT+1 * - permalink - archive.org - https://12factor.net/
      best ci docker env factor plan practice unix variable
    Links per page: 20 50 100
    page 1 / 1
    Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation