We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6631bb commit 35b1221Copy full SHA for 35b1221
.github/workflows/main.yml
@@ -36,7 +36,7 @@ jobs:
36
37
# Runs a single command using the runners shell
38
- name: build nginx image
39
- run: docker-compose build nginx
+ run: docker-compose build nginx php
40
41
- name: Login to DockerHub
42
uses: docker/login-action@v1
@@ -47,6 +47,8 @@ jobs:
47
name: Build and push
48
run: |
49
docker login --username=batcom --password=${{ secrets.DOCKER_PASSWORD }}
50
- docker tag dnmp_nginx:latest batcom/dnmp
51
- docker push batcom/dnmp
+ docker tag dnmp_nginx:latest batcom/dnmp_nginx
+ docker tag dnmp_php:latest batcom/dnmp_php
52
+ docker push batcom/dnmp_nginx
53
+ docker push batcom/dnmp_php
54
0 commit comments