php ontainres reworked

This commit is contained in:
stam 2021-06-02 19:07:25 +03:00
parent 219b012ce3
commit 0506c6a164
17 changed files with 44 additions and 16 deletions

5
linux/php/7.2/Makefile Normal file
View File

@ -0,0 +1,5 @@
all: app
app:
docker-compose build --compress
docker-compose push

View File

@ -0,0 +1,6 @@
version: '3.9'
services:
app:
image: "epicmorg/php:7.2"
build:
context: .

5
linux/php/7.3/Makefile Normal file
View File

@ -0,0 +1,5 @@
all: app
app:
docker-compose build --compress
docker-compose push

View File

@ -0,0 +1,6 @@
version: '3.9'
services:
app:
image: "epicmorg/php:7.3"
build:
context: .

5
linux/php/7.4/Makefile Normal file
View File

@ -0,0 +1,5 @@
all: app
app:
docker-compose build --compress
docker-compose push

View File

@ -0,0 +1,6 @@
version: '3.9'
services:
app:
image: "epicmorg/php:7.4"
build:
context: .

View File

@ -1,4 +1,5 @@
all: php
php:
docker build --compress -t epicmorg/php:latest .
docker push epicmorg/php:latest
all: app
app:
docker-compose build --compress
docker-compose push

View File

@ -0,0 +1,6 @@
version: '3.9'
services:
app:
image: "epicmorg/php:latest"
build:
context: .

View File

@ -1,4 +0,0 @@
all: php
php:
docker build --compress -t epicmorg/php:php7.2 .
docker push epicmorg/php:php7.2

View File

@ -1,4 +0,0 @@
all: php
php:
docker build --compress -t epicmorg/php:php7.3 .
docker push epicmorg/php:php7.3

View File

@ -1,4 +0,0 @@
all: php
php:
docker build --compress -t epicmorg/php:php7.4 .
docker push epicmorg/php:php7.4