10 lines
262 B
Text
10 lines
262 B
Text
|
FROM debian:latest
|
||
|
RUN apt-get update && apt-get install -y openssh-server
|
||
|
|
||
|
RUN useradd -m replication && mkdir -p /home/replication/.ssh && chown -R replication:replication /home/replication/.ssh
|
||
|
|
||
|
RUN mkdir /var/run/sshd
|
||
|
|
||
|
EXPOSE 22
|
||
|
|
||
|
CMD ["/usr/sbin/sshd", "-D"]
|