You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install Docker in your computer. "How to install Docker on a computer?" written on the official Docker website.
Pull the docker image docker pull vodacode/fileexchanger
On first start you should configure application.
Minimum requirements for the first run: docker run -d -p 8080:80 --name MyFileExchnager vodacode/fileexchanger -DB_HOST 127.0.0.1 -DB_PORT 1433 -DB_AUTH sa@password -FTP_HOST 127.0.0.1 - This command will launch a visa container named "MyFileExchnager" on port 8080.
More details in the section "Configurations".
For next runs you could use Docker Hub (GUI) or command line.
Run from the command line: docker start MyFileExchnager
Configurations
-DB_HOST [String] - Database server host.
Example: -DB_HOST example.com or -DB_HOST 127.0.0.1
-DB_PORT [Number] - Database server port.
Example: -DB_PORT 1433
-DB_AUTH [String] - Data for authorization on the database server.
Example: -DB_AUTH username@password
-MaxSaveSize [String] - (optional) The maximum file size that can be saved.
Default: 1.5 Gb
Format: -MaxSaveSize [[Number] Gb/Mb/Kb]
Example: -MaxSaveSize 2 Gb