Commit 8febac2b authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Update README.md

parent 2228d1ec
Loading
Loading
Loading
Loading
Loading
+17 −1
Original line number Diff line number Diff line
@@ -93,6 +93,22 @@ docker build \
.
```

### PHP 7.4

```bash
HTTP_PROXY=http://proxy.unicaen.fr:3128 ; \
NO_PROXY=unicaen.fr ; \
PHP_VERSION=7.4 ; \
docker build \
--rm \
--build-arg PHP_VERSION=${PHP_VERSION} \
--build-arg HTTP_PROXY=${HTTP_PROXY} \
--build-arg OCI8_PACKAGE="oci8" \
-f Dockerfile \
-t unicaen-dev-php${PHP_VERSION}-apache \
.
```

## Utilisation de l'image 

### Dans un `Dockerfile`
@@ -156,7 +172,7 @@ composer install

### Exec 

- Lancement d'une commande dans un container démarré, exemple :
- Lancement d'une commande dans un container déjà démarré, exemple :

```bash
docker exec \