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
    ◄Older
    page 1 / 7
    129 results tagged docker x
    • thumbnail
      GoogleContainerTools/distroless: 🥑 Language focused docker images, minus the operating system.
      April 7, 2023 at 1:52:21 PM GMT+2 * - permalink - archive.org - https://github.com/GoogleContainerTools/distroless
      distroless docker image
    • thumbnail
      dagger.io
      March 8, 2023 at 10:42:31 AM GMT+1 * - permalink - archive.org - https://dagger.io/
      cd ci docker
    • thumbnail
      GitHub - sigstore/cosign: Container Signing
      September 12, 2021 at 10:17:54 PM GMT+2 - permalink - archive.org - https://github.com/sigstore/cosign
      docker sign
    • ttl.sh | An anonymous & ephemeral (and free) Docker image registry
      September 12, 2021 at 10:16:56 PM GMT+2 * - permalink - archive.org - https://ttl.sh/
      docker registry
    • thumbnail
      Creating the Perfect Python Dockerfile | by Luis Sena | May, 2021 | Medium
      May 21, 2021 at 10:21:09 AM GMT+2 - permalink - archive.org - https://luis-sena.medium.com/creating-the-perfect-python-dockerfile-51bdec41f1c8
      docker gunicorn python
    • Note: haproxy

      Ces derniers jours je suis en train de voir pour remplacer mon reverse proxy perso qui était resté en haproxy, déplacé dans un container à la va vite..

      J'ai donc commencé à expérimenter traefik et ça semble faire le boulot. J'aime beaucoup le côté dynamique avec les labels sur les containers.

      Il remplit tous les rôles de mon haproxy :

      • offloading ssl
      • basic auth http pour certains backend
      • et puis voilà c'est tout en fait

      Autre avantage, il intègre la génération/renouvellement des certificats ssl ce qui va me permettre de virer un vieux script en bash (qui faisait ça très bien, mais au moins ce sera + clean)

      Seule contrainte, je me demande si je peux reverse vers un backend qui ne serait pas du docker. Peut être en mettant de la conf en dur.

      May 12, 2021 at 12:33:13 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?P8uckQ
      docker haproxy traefik
    • Welcome to cert-manager | cert-manager
      May 11, 2021 at 8:21:44 AM GMT+2 - permalink - archive.org - https://cert-manager.io/docs/
      cert docker k8s letsencrypt tls
    • thumbnail
      Configuring Docker to not use the 172.17.0.0 range - Server Fault
      Pour changer les subnets utilisés par les network bridge users

      # nano /etc/docker/daemon.json

      Add lines:

      {
        "default-address-pools":
        [
          {"base":"10.10.0.0/16","size":24}
        ]
      }
      April 12, 2021 at 2:07:53 PM GMT+2 * - permalink - archive.org - https://serverfault.com/questions/916941/configuring-docker-to-not-use-the-172-17-0-0-range
      docker
    • Creating Lambda container images - AWS Lambda

      Packaging docker pour lambda

      February 23, 2021 at 10:33:39 AM GMT+1 - permalink - archive.org - https://docs.aws.amazon.com/lambda/latest/dg/images-create.html
      aws docker lambda
    • thumbnail
      GitHub - containrrr/watchtower: A process for automating Docker container base image updates.

      un container qui va update les autres containers si une image plus récente a été trouvée (stop, rm, pull, recreate)
      Pratique sur serveur perso pour les choses qui tournent en latest
      Implémentation en Go, il y a le pendant python ici : https://github.com/pyouroboros/ouroboros

      April 11, 2020 at 11:32:56 AM GMT+2 - permalink - archive.org - https://github.com/containrrr/watchtower
      auto docker go python update
    • thumbnail
      avsm/docker-ssh-agent-forward: Forward SSH agent socket into a container
      July 30, 2019 at 8:26:21 AM GMT+2 - permalink - archive.org - https://github.com/avsm/docker-ssh-agent-forward
      docker mac mount ssh
    • Define a Command and Arguments for a Container - Kubernetes

      dans un Dockerfile : ENTRYPOINT + CMD
      chez k8s : command + args

      March 5, 2019 at 5:14:24 PM GMT+1 - permalink - archive.org - https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#define-a-command-and-arguments-when-you-create-a-pod
      cmd command docker entrypoint k8s
    • Introduction to environments and deployments | GitLab

      Je cherchais à déployer le même build sur un env de preprod et ensuite sur la prod si le build est ok
      Ce qui se fait très bien "à l'ancienne" avec Jenkins/Bamboo :

      • on a une étape de build qui va créé un artifact
      • et une étape de deploy completement indépendante qui permet de déployer un artifact qu'on choisit sur un env en particulier

      Je ne retrouvais pas cette logique dans les outils plus récents car le deploy est toujours lié au build donc je ne voyais pas comment faire..
      La clé est dans la possibilité de pouvoir arrêter un job, de le mettre en pause pour pouvoir le déclencher plus tard si on le souhaite
      Donc pour un commit push sur un master, le workflow va se déclencher...

      • tests, builds...
      • deploy sur preprod
      • deploy sur prod en HOLD

      Si on voit que tout est ok sur preprod, on peut venir resume le deploy prod ! on va utiliser le même build qu'on a testé sur la preprod

      C'est le même principe, on veut check la preprod avant de déployer la prod en utilisant le même build, mais implémenté différement

      L'équivalent chez circleci :
      https://circleci.com/blog/manual-job-approval-and-scheduled-workflow-runs/
      https://circleci.com/docs/2.0/workflows/#holding-a-workflow-for-a-manual-approval

      Et chez Jenkins (récent) :
      https://jenkins.io/doc/pipeline/tour/deployment/#asking-for-human-input-to-proceed

      February 27, 2019 at 10:29:44 PM GMT+1 * - permalink - archive.org - https://docs.gitlab.com/ee/ci/environments.html#manually-deploying-to-environments
      cicd docker
    • Performance tuning for volume mounts (shared filesystems) | Docker Documentation

      tweak volume pour perf docker sous mac

      February 12, 2019 at 11:09:00 AM GMT+1 - permalink - archive.org - https://docs.docker.com/docker-for-mac/osxfs-caching/
      docker mac volume
    • thumbnail
      Secrets Management within AWS ECS – Hacker Noon

      olded by https://docs.aws.amazon.com/fr_fr/AmazonECS/latest/developerguide/specifying-sensitive-data.html

      January 17, 2019 at 11:45:13 AM GMT+1 * - permalink - archive.org - https://hackernoon.com/secrets-management-within-aws-ecs-1b6975819ccd
      aws docker ecs secret ssm
    • Helm - The Kubernetes Package Manager
      January 11, 2019 at 1:57:26 PM GMT+1 - permalink - archive.org - https://helm.sh/
      bundle docker k8s package
    • CNAB: Cloud Native Application Bundles
      January 11, 2019 at 1:57:14 PM GMT+1 - permalink - archive.org - https://cnab.io/
      bundle docker package
    • thumbnail
      GitHub - just-containers/s6-overlay: s6 overlay for containers (includes execline, s6-linux-utils & a custom init)
      December 24, 2018 at 9:12:46 AM GMT+1 - permalink - archive.org - https://github.com/just-containers/s6-overlay
      docker init pid1
    • Traefik

      /me découvre

      via itweb

      December 18, 2018 at 4:56:59 PM GMT+1 - permalink - archive.org - https://docs.traefik.io/
      docker proxy reverse
    • What is Amazon Elastic Container Service? - Amazon Elastic Container Service
      November 15, 2018 at 9:11:33 AM GMT+1 - permalink - archive.org - https://docs.aws.amazon.com/AmazonECS/latest/developerguide/Welcome.html
      aws docker ecs
    Links per page: 20 50 100
    ◄Older
    page 1 / 7
    Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation