Skip to content

Commit

Permalink
Update dockers
Browse files Browse the repository at this point in the history
  • Loading branch information
andres-montanez committed Feb 19, 2021
1 parent 9e47479 commit b7ade4d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 36 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -22,7 +22,7 @@ Simply add the following dependency to your project’s composer.json file:
Finally you can use **Magallanes** from the vendor's bin:

```bash
$ vendor/bin/mage version
vendor/bin/mage version
```

### Codename Discovery One
Expand Down
18 changes: 3 additions & 15 deletions docs/dockers/docker-compose.yml
@@ -1,19 +1,7 @@
version: '2'
services:
php5:
container_name: mage-php5
build: ./php5
volumes:
- ../../:/home/magephp

php7.0:
container_name: mage-php7.0
build: ./php7.0
volumes:
- ../../:/home/magephp

php7.1:
container_name: mage-php7.1
build: ./php7.1
php7.4:
container_name: mage-php7.4
build: ./php7.4
volumes:
- ../../:/home/magephp
9 changes: 0 additions & 9 deletions docs/dockers/php5/Dockerfile

This file was deleted.

9 changes: 0 additions & 9 deletions docs/dockers/php7.1/Dockerfile

This file was deleted.

@@ -1,8 +1,11 @@
FROM ubuntu:16.04
FROM ubuntu:20.04

ENV DEBIAN_FRONTEND=noninteractive \
TZ=UTC

RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y vim curl git unzip
RUN apt-get install -y php7.0-cli php-zip php7.0-curl php7.0-xml
RUN apt-get install -y php7.4-cli php-zip php7.4-curl php7.4-xml php7.4-mbstring php7.4-xdebug

RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer

Expand Down

0 comments on commit b7ade4d

Please sign in to comment.