Skip to content

Commit

Permalink
Merge pull request #18 from lextira/php7.4-update
Browse files Browse the repository at this point in the history
updated underlaying container to php7.4 version
  • Loading branch information
kohlerdominik committed Apr 20, 2020
2 parents ff642df + 6a0800c commit f062050
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion development.docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
5 changes: 1 addition & 4 deletions web/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit f062050

Please sign in to comment.