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.
|
|
|
scpserver:
|
|
|
|
image: r3pek/sftp-server
|
|
|
|
ports:
|
|
|
|
- "2222:22"
|
|
|
|
environment:
|
|
|
|
AUTHORIZED_KEYS: |
|
|
|
|
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEA4FhFro3H....vg0hrC3s0= My First CERT
|
|
|
|
USERID: 500
|
|
|
|
GROUPID: 500
|
|
|
|
volumes:
|
|
|
|
- /var/tmp/wwwdata:/home/data
|
|
|
|
- /var/tmp/hostkeys:/etc/ssh/host_keys
|
|
|
|
|
|
|
|
httpd:
|
|
|
|
image: httpd
|
|
|
|
ports:
|
|
|
|
- "80:80"
|
|
|
|
volumes_from:
|
|
|
|
- htdocs
|
|
|
|
|
|
|
|
htdocs:
|
|
|
|
image: tianon/true
|
|
|
|
volumes:
|
|
|
|
- /var/tmp/wwwdata:/usr/local/apache2/htdocs
|