diff --git a/.env.sample b/.env.sample index 1eeaca9..e412b54 100644 --- a/.env.sample +++ b/.env.sample @@ -81,5 +81,5 @@ SECRET_DB_PASSWORD_VERSION=v1 # FTP #COMPOSE_FILE="$COMPOSE_FILE:compose.ftp.yml" #SECRET_FTP_PASS_VERSION=v1 -# Select a port other than 2222 (2220-2225) +# You can use a Port between 2220-2225 #COMPOSE_FILE="$COMPOSE_FILE:compose.ftp-2220.yml" diff --git a/compose.ftp-2222.yml b/compose.ftp-2222.yml new file mode 100644 index 0000000..38ee4b2 --- /dev/null +++ b/compose.ftp-2222.yml @@ -0,0 +1,7 @@ +--- +version: "3.8" + +services: + ftp: + ports: + - 2222:22 diff --git a/compose.ftp.yml b/compose.ftp.yml index bbff6a2..1365923 100644 --- a/compose.ftp.yml +++ b/compose.ftp.yml @@ -6,8 +6,6 @@ services: image: atmoz/sftp secrets: - ftp_pass - ports: - - 2222:22 volumes: - "wordpress_content:/home/ftp_user/wp-content" configs: diff --git a/release/next b/release/next new file mode 100644 index 0000000..eb61a78 --- /dev/null +++ b/release/next @@ -0,0 +1 @@ +Breaking change for ftp container: you need to uncomment COMPOSE_FILE="$COMPOSE_FILE:compose.ftp-2222.yml" to open port 2222 again. You can also select between port 2220-2225.