Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

10 satır
259 B

  1. FROM ghcr.io/devture/ansible:11.1.0-r0-0
  2. # Install additional packages
  3. RUN apk add --no-cache \
  4. pwgen
  5. # Preserve command history across container restarts
  6. RUN SNIPPET="export HISTFILE=/commandhistory/.ash_history" \
  7. && echo "$SNIPPET" >> "/root/.profile"