Added other containers
Some checks reported warnings
Build and push image / Build (push) Has been cancelled

This commit is contained in:
Jack
2023-08-26 00:15:47 +01:00
parent 12e2b4b186
commit dd6b348e65
92 changed files with 250 additions and 5 deletions

View File

@@ -11,10 +11,17 @@ jobs:
- name: Install
run: curl -fsSL get.docker.com | bash
- name: Clone
run: git clone https://tgj.services/git/thatguyjack/php-fpm-docker.git .
run: git clone https://git.tgj.services/thatguyjack/custom-docker-containers.git .
- name: Login
run: echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login 'tgj.services/git/' -u thatguyjack --password-stdin
- name: Build
run: docker build . -t tgj.services/git/thatguyjack/php-fpm:latest
run: echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login git.tgj.services -u thatguyjack --password-stdin
- name: Build php-FPM
run: docker build ./php-fpm/ -t git.tgj.services/thatguyjack/php-fpm:latest
- name: Build php-CLI
run: docker build ./php-cli/ -t git.tgj.services/thatguyjack/php-cli:latest
- name: Build nginx-web
run: docker build ./nginx-web -t git.tgj.services/thatguyjack/nginx-web:latest
- name: Push
run: docker push tgj.services/git/thatguyjack/php-fpm:latest
run: |
docker push git.tgj.services/git/thatguyjack/php-fpm:latest
docker push git.tgj.services/git/thatguyjack/php-cli:latest
docker push git.tgj.services/git/thatguyjack/nginx-web:latest