Update build.yml
This commit is contained in:
parent
84ab7c9e35
commit
5558f462f0
|
@ -11,7 +11,7 @@ jobs:
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
- name: Docker NGINX build
|
- name: NGINX build
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
context: nginx
|
context: nginx
|
||||||
|
@ -19,6 +19,38 @@ jobs:
|
||||||
push: false
|
push: false
|
||||||
tags: kowhai/ckan-docker-nginx:testing-only
|
tags: kowhai/ckan-docker-nginx:testing-only
|
||||||
|
|
||||||
|
- name: PostgreSQL build
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: postgresql
|
||||||
|
file: postgresql/Dockerfile
|
||||||
|
push: false
|
||||||
|
tags: kowhai/ckan-docker-postgresql:testing-only
|
||||||
|
|
||||||
|
- name: Solr build
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: solr
|
||||||
|
file: solr/Dockerfile
|
||||||
|
push: false
|
||||||
|
tags: kowhai/ckan-docker-solr:testing-only
|
||||||
|
|
||||||
|
- name: DataPusher build
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: datapusher
|
||||||
|
file: datapusher/Dockerfile
|
||||||
|
push: false
|
||||||
|
tags: kowhai/ckan-docker-datapusher:testing-only
|
||||||
|
|
||||||
|
- name: CKAN build
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: ckan
|
||||||
|
file: ckan/Dockerfile
|
||||||
|
push: false
|
||||||
|
tags: kowhai/ckan-docker-ckan:testing-only
|
||||||
|
|
||||||
#- name: Docker postgres build
|
#- name: Docker postgres build
|
||||||
# run: |
|
# run: |
|
||||||
# docker build ./postgresql -t kowhai/ckan-docker-postgresql:testing-only
|
# docker build ./postgresql -t kowhai/ckan-docker-postgresql:testing-only
|
||||||
|
|
Loading…
Reference in New Issue