diff options
Diffstat (limited to 'test/mocks')
-rw-r--r-- | test/mocks/pnfsimulator/docker-compose.yml | 16 | ||||
-rw-r--r-- | test/mocks/pnfsimulator/sftp/sftp-file.txt | 2 |
2 files changed, 17 insertions, 1 deletions
diff --git a/test/mocks/pnfsimulator/docker-compose.yml b/test/mocks/pnfsimulator/docker-compose.yml index cfc086357..d6f376f8c 100644 --- a/test/mocks/pnfsimulator/docker-compose.yml +++ b/test/mocks/pnfsimulator/docker-compose.yml @@ -11,6 +11,7 @@ services: - ./json_schema:/json_schema env_file: - ./config/netconf.env + restart: on-failure depends_on: - netopeer @@ -19,7 +20,20 @@ services: image: sysrepo/sysrepo-netopeer2:latest ports: - "830:830" + volumes: + - ./netconf:/netconf env_file: - ./config/netconf.env + restart: on-failure + depends_on: + - sftp-server + + sftp-server: + container_name: sftp-server + image: atmoz/sftp:alpine + ports: + - "22:22" volumes: - - ./netconf:/netconf
\ No newline at end of file + - ./sftp:/home/sftp-user/sftp + restart: on-failure + command: sftp-user:sftp-password
\ No newline at end of file diff --git a/test/mocks/pnfsimulator/sftp/sftp-file.txt b/test/mocks/pnfsimulator/sftp/sftp-file.txt new file mode 100644 index 000000000..43f671212 --- /dev/null +++ b/test/mocks/pnfsimulator/sftp/sftp-file.txt @@ -0,0 +1,2 @@ +We are SFTP specialists. +Do you prefer chocolate or vanilia?
\ No newline at end of file |