You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
728 B
23 lines
728 B
3 years ago
|
version: "3"
|
||
|
services:
|
||
|
openssh-server:
|
||
|
image: ghcr.io/linuxserver/openssh-server
|
||
|
container_name: openssh-server
|
||
|
hostname: openssh-server #optional
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=Europe/London
|
||
|
- PUBLIC_KEY=yourpublickey #optional
|
||
|
- PUBLIC_KEY_FILE=/path/to/file #optional
|
||
|
- PUBLIC_KEY_DIR=/path/to/directory/containing/_only_/pubkeys #optional
|
||
|
- SUDO_ACCESS=false #optional
|
||
|
- PASSWORD_ACCESS=false #optional
|
||
|
- USER_PASSWORD=password #optional
|
||
|
- USER_PASSWORD_FILE=/path/to/file #optional
|
||
|
- USER_NAME=linuxserver.io #optional
|
||
|
volumes:
|
||
|
- /path/to/appdata/config:/config
|
||
|
ports:
|
||
|
- 2222:2222
|
||
|
restart: unless-stopped
|