splited php image from websites

This commit is contained in:
STAM 2021-01-27 21:05:43 +03:00
parent 6c3023a3e2
commit 52907598ab
2 changed files with 18 additions and 0 deletions

View File

@ -149,6 +149,12 @@ jobs:
- name: Build NGinx + RTMP-HLS - name: Build NGinx + RTMP-HLS
run: docker build --compress -t epicmorg/balancer:rtmp-hls balancer/rtmp-hls run: docker build --compress -t epicmorg/balancer:rtmp-hls balancer/rtmp-hls
- name: PHP (latest)
run: docker build --compress -t epicmorg/php:latest php/latest
- name: PHP 7.4
run: docker build --compress -t epicmorg/php:php7.4 php/php7.4
- name: Build Apache (latest) - name: Build Apache (latest)
run: docker build --compress -t epicmorg/websites:latest websites/latest run: docker build --compress -t epicmorg/websites:latest websites/latest

View File

@ -228,6 +228,13 @@ jobs:
- name: Push Apache (latest) - name: Push Apache (latest)
run: docker push epicmorg/websites:latest run: docker push epicmorg/websites:latest
- name: PHP (latest)
run: docker build --compress -t epicmorg/php:latest php/latest
- name: Push PHP (latest)
run: docker push epicmorg/php:latest
- name: Build NGinx (latest) - name: Build NGinx (latest)
run: docker build --compress -t epicmorg/balancer:latest balancer/latest run: docker build --compress -t epicmorg/balancer:latest balancer/latest
- name: Push NGinx (latest) - name: Push NGinx (latest)
@ -296,6 +303,11 @@ jobs:
- name: Push NGinx + RTMP-HLS - name: Push NGinx + RTMP-HLS
run: docker push epicmorg/balancer:rtmp-hls run: docker push epicmorg/balancer:rtmp-hls
- name: PHP 7.4
run: docker build --compress -t epicmorg/php:php7.4 php/php7.4
- name: Push PHP 7.4
run: docker push epicmorg/php:7.4
- name: Build Apache + PHP7.4 - name: Build Apache + PHP7.4
run: docker build --compress -t epicmorg/websites:php7.4 websites/php7.4 run: docker build --compress -t epicmorg/websites:php7.4 websites/php7.4
- name: Push Apache + PHP7.4 - name: Push Apache + PHP7.4