4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
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.
    7 avril 2023 à 13:52:21 UTC+2 * - permalink - archive.org - https://github.com/GoogleContainerTools/distroless
    distroless docker image
  • thumbnail
    dagger.io
    8 mars 2023 à 10:42:31 UTC+1 * - permalink - archive.org - https://dagger.io/
    cd ci docker
  • thumbnail
    GitHub - sigstore/cosign: Container Signing
    12 septembre 2021 à 22:17:54 UTC+2 - permalink - archive.org - https://github.com/sigstore/cosign
    docker sign
  • ttl.sh | An anonymous & ephemeral (and free) Docker image registry
    12 septembre 2021 à 22:16:56 UTC+2 - permalink - archive.org - https://ttl.sh/
    docker registry
  • thumbnail
    Creating the Perfect Python Dockerfile | by Luis Sena | May, 2021 | Medium
    21 mai 2021 à 10:21:09 UTC+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.

    12 mai 2021 à 12:33:13 UTC+2 - permalink - archive.org - https://links.infomee.fr/?P8uckQ
    docker haproxy traefik
  • Welcome to cert-manager | cert-manager
    11 mai 2021 à 08:21:44 UTC+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}
      ]
    }
    12 avril 2021 à 14:07:53 UTC+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

    23 février 2021 à 10:33:39 UTC+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

    11 avril 2020 à 11:32:56 UTC+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
    30 juillet 2019 à 08:26:21 UTC+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

    5 mars 2019 à 17:14:24 UTC+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

    27 février 2019 à 22:29:44 UTC+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

    12 février 2019 à 11:09:00 UTC+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

    17 janvier 2019 à 11:45:13 UTC+1 * - permalink - archive.org - https://hackernoon.com/secrets-management-within-aws-ecs-1b6975819ccd
    aws docker ecs secret ssm
  • Helm - The Kubernetes Package Manager
    11 janvier 2019 à 13:57:26 UTC+1 - permalink - archive.org - https://helm.sh/
    bundle docker k8s package
  • CNAB: Cloud Native Application Bundles
    11 janvier 2019 à 13:57:14 UTC+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)
    24 décembre 2018 à 09:12:46 UTC+1 - permalink - archive.org - https://github.com/just-containers/s6-overlay
    docker init pid1
  • Traefik

    /me découvre

    via itweb

    18 décembre 2018 à 16:56:59 UTC+1 - permalink - archive.org - https://docs.traefik.io/
    docker proxy reverse
  • What is Amazon Elastic Container Service? - Amazon Elastic Container Service
    15 novembre 2018 à 09:11:33 UTC+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