diff options
author | 2018-09-14 17:23:19 +0000 | |
---|---|---|
committer | 2018-09-14 17:23:19 +0000 | |
commit | 9bb364c49446381ee4dfdb22a83c6c746ca726ce (patch) | |
tree | 888e0952050a9ca2ab1f5503e4c1c1d697ce5cbd /test/mocks/pnfsimulator/docker-compose.yml | |
parent | 48687fdb042942218082c677a061c62144706bed (diff) | |
parent | 2f1f244937439cdb7dca7177970ef1dedf4e038e (diff) |
Merge "add ftpes"
Diffstat (limited to 'test/mocks/pnfsimulator/docker-compose.yml')
-rw-r--r-- | test/mocks/pnfsimulator/docker-compose.yml | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/test/mocks/pnfsimulator/docker-compose.yml b/test/mocks/pnfsimulator/docker-compose.yml index 5f73cde74..aa9f00191 100644 --- a/test/mocks/pnfsimulator/docker-compose.yml +++ b/test/mocks/pnfsimulator/docker-compose.yml @@ -37,4 +37,19 @@ services: - ./sftp:/home/sftp-user/sftp - ./ssh/ssh_host_rsa_key.pub:/home/sftp-user/.ssh/keys/ssh_host_rsa_key.pub:ro restart: on-failure - command: sftp-user::1001
\ No newline at end of file + command: sftp-user::1001 + + ftpes-server: + image: stilliard/pure-ftpd:latest + container_name: ftpes-server + ports: + - "2221:21" +# - "30000-30009:30000-30009" + volumes: + - ./ftpes/userpass/:/etc/pure-ftpd/passwd/ + - ./ftpes/tls/:/etc/ssl/private/ + environment: + PUBLICHOST: localhost + ADDED_FLAGS: --tls=2 +# entrypoint: /run.sh -c 5 -C 5 -l puredb:/etc/pure-ftpd/pureftpd.pdb -E -j -R -p 30000:30009 + restart: on-failure
\ No newline at end of file |