プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

Select the types of activity you want to include in your feed.

create ssh-backup (#216)

authored by

Kohei Watanabe and committed by
GitHub
(Jun 2, 2025, 4:36 PM +0900) d7dfbbd8 f0aa100e

+14
+14
ssh-backup/compose.yml
··· 1 + name: ssh-backup 2 + services: 3 + openssh-server: 4 + image: linuxserver/openssh-server 5 + ports: 6 + - "2222:2222" 7 + environment: 8 + PUID: "1000" 9 + PGID: "1000" 10 + PASSWORD_ACCESS: "true" 11 + USER_NAME: backup 12 + USER_PASSWORD: ${BACKUP_PASSWORD:?} # BACKUP_PASSWORD=$(openssl rand -base64 8 | tee /dev/stderr) docker compose up 13 + volumes: 14 + - ./backup:/config/backup