Skip to content

Commit

Permalink
fix: env vars need to be empty or the script will try to upload to ftp
Browse files Browse the repository at this point in the history
  • Loading branch information
cwiggs committed Aug 1, 2023
1 parent bfa8264 commit f761e97
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ ENV SSH_HOST=""
ENV SSH_PATH=""

#only set these variables, if you need FTP upload:
ENV FTP_USER="scanner"
ENV FTP_PASSWORD="scanner"
ENV FTP_HOST="ftp.mydomain.com"
ENV FTP_PATH="/"
ENV FTP_USER=""
ENV FTP_PASSWORD=""
ENV FTP_HOST=""
# Make sure this ends in a slash.
ENV FTP_PATH="/scans/"

EXPOSE 54925
EXPOSE 54921
Expand Down

0 comments on commit f761e97

Please sign in to comment.