Matrix Docker Ansible eploy
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

10 rader
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"