Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

14 行
351 B

  1. # SPDX-FileCopyrightText: 2025 Jonah Aragon
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. FROM ghcr.io/devture/ansible:11.6.0-r0-0
  5. # Install additional packages
  6. RUN apk add --no-cache \
  7. pwgen
  8. # Preserve command history across container restarts
  9. RUN SNIPPET="export HISTFILE=/commandhistory/.ash_history" \
  10. && echo "$SNIPPET" >> "/root/.profile"