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.
    2023年4月7日 GMT+2 下午1:52:21 * - permalink - archive.org - https://github.com/GoogleContainerTools/distroless
    distroless docker image
  • thumbnail
    dagger.io
    2023年3月8日 GMT+1 上午10:42:31 * - permalink - archive.org - https://dagger.io/
    cd ci docker
  • thumbnail
    GitHub - sigstore/cosign: Container Signing
    2021年9月12日 GMT+2 下午10:17:54 - permalink - archive.org - https://github.com/sigstore/cosign
    docker sign
  • ttl.sh | An anonymous & ephemeral (and free) Docker image registry
    2021年9月12日 GMT+2 下午10:16:56 * - permalink - archive.org - https://ttl.sh/
    docker registry
  • thumbnail
    Creating the Perfect Python Dockerfile | by Luis Sena | May, 2021 | Medium
    2021年5月21日 GMT+2 上午10:21:09 - 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.

    2021年5月12日 GMT+2 下午12:33:13 - permalink - archive.org - https://links.infomee.fr/?P8uckQ
    docker haproxy traefik
  • Welcome to cert-manager | cert-manager
    2021年5月11日 GMT+2 上午8:21:44 - 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}
      ]
    }
    2021年4月12日 GMT+2 下午2:07:53 * - 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

    2021年2月23日 GMT+1 上午10:33:39 - 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

    2020年4月11日 GMT+2 上午11:32:56 - 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
    2019年7月30日 GMT+2 上午8:26:21 - 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

    2019年3月5日 GMT+1 下午5:14:24 - 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

    2019年2月27日 GMT+1 下午10:29:44 * - 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

    2019年2月12日 GMT+1 上午11:09:00 - 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

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

    /me découvre

    via itweb

    2018年12月18日 GMT+1 下午4:56:59 - permalink - archive.org - https://docs.traefik.io/
    docker proxy reverse
  • What is Amazon Elastic Container Service? - Amazon Elastic Container Service
    2018年11月15日 GMT+1 上午9:11:33 - 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