diff --git a/development.docker-compose.yml b/development.docker-compose.yml index ab3d950..e097585 100644 --- a/development.docker-compose.yml +++ b/development.docker-compose.yml @@ -2,7 +2,7 @@ version: '3.4' services: web: - image: webdevops/php-nginx:alpine-php7 + image: webdevops/php-nginx:7.4-alpine restart: ${SERVICES_RESTART} working_dir: /var/www depends_on: diff --git a/readme.md b/readme.md index 6ebb5b8..559e96f 100644 --- a/readme.md +++ b/readme.md @@ -97,7 +97,7 @@ php artisan ftp:account:add example.com john --pass Secret You may also want an API-key, so you can manage accounts through the API. Every virtual domain can have multiple keys. ``` -php artisan ftp:key:generate example.com "This key is for mypage.com" +php artisan ftp:key:generate exapmple.com "This key is for mypage.com" ``` Now your server is up and running and ready to work. You can find the API-documentation on `your-ftp.domain.com/api/documentation`. If you prefer management trough CLI, simply type `php artisan ftp` to get the full list of commands. Help is available via `php artisan ftp:[command] --help`. diff --git a/web/Dockerfile b/web/Dockerfile index 93b73fc..3ad31db 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -1,7 +1,4 @@ -FROM webdevops/php-nginx:alpine-php7 - -# tell debian we want as less interaction as possible -ENV DEBIAN_FRONTEND noninteractive +FROM webdevops/php-nginx:7.4-alpine # install packages COPY src /var/www