Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

10 строки
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"