mirror of
https://github.com/Viren070/docker-compose-template.git
synced 2025-12-01 23:17:00 +01:00
20 lines
413 B
YAML
20 lines
413 B
YAML
services:
|
|
sshbot:
|
|
image: nhyyeb/sshbot:latest
|
|
container_name: sshbot
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
TZ: ${TZ:-UTC}
|
|
# SSH_PRIVATE_KEY: |
|
|
# -----BEGIN OPENSSH PRIVATE KEY-----
|
|
# your_key_line_1
|
|
# your_key_line_2
|
|
# your_key_line_3
|
|
# -----END OPENSSH PRIVATE KEY-----
|
|
profiles:
|
|
- sshbot
|
|
- all
|
|
|