25.3.2026 V2

This commit is contained in:
2026-03-25 10:10:09 +01:00
parent f8a78c0ead
commit 9c8606ef11
18 changed files with 96 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
services:
sshd:
build:
context: ./sshd
container_name: sshd-container
restart: unless-stopped
ports:
- "2222:22"
volumes:
- ./keys/authorized_keys:/home/docker/.ssh/authorized_keys:ro
- ./keys/host_keys:/etc/ssh/host_keys
- ./data:/data
command: ["/usr/sbin/sshd","-D","-e"]