forked from GeoNode/geonode-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
96 lines (85 loc) · 3.1 KB
/
52n-latest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: "[52n-4.2.x -> 4.2.x] Builds GeoNode Docker Images"
concurrency:
group: "geonode_build_4.2.x"
cancel-in-progress: true
env:
TAG: 4.2.x
on:
push:
branches:
- "52n-4.2.x"
jobs:
build_and_push_geoserver:
runs-on: ubuntu-22.04
env:
IMAGE: 52north/geonode-geoserver
steps:
- name: Checkout
uses: actions/checkout@v3
- name: build and push geoserver
uses: ./.github/actions/52n-build_and_push
with:
dockerfile: ./docker/geoserver/Dockerfile
dockercontext: ./docker/geoserver/
image: 52north/geonode-geoserver
tags: ${{ env.TAG }}
allow_tag_override: "true"
oci_title: "52°North GeoServer image for GeoNode"
oci_description: "GeoServer built for GeoNode from 52north/geonode-docker"
registry_username: ${{ secrets.DOCKERHUB_USERNAME }}
registry_password: ${{ secrets.DOCKERHUB_TOKEN }}
build_and_push_geoserver_data:
runs-on: ubuntu-22.04
env:
IMAGE: 52north/geonode-geoserver_data
steps:
- name: Checkout
uses: actions/checkout@v3
- name: build and push geoserver_data
uses: ./.github/actions/52n-build_and_push
with:
dockerfile: ./docker/geoserver_data/Dockerfile
dockercontext: ./docker/geoserver_data/
image: 52north/geonode-geoserver_data
tags: ${{ env.TAG }}
allow_tag_override: "true"
oci_title: "52°North GeoServer data image for GeoNode"
oci_description: "GeoServer Data built for GeoNode from 52north/geonode-docker"
registry_username: ${{ secrets.DOCKERHUB_USERNAME }}
registry_password: ${{ secrets.DOCKERHUB_TOKEN }}
build_and_push_nginx:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: build and push nginx
uses: ./.github/actions/52n-build_and_push
with:
dockerfile: ./docker/nginx/Dockerfile
dockercontext: ./docker/nginx/
image: 52north/geonode-nginx
tags: ${{ env.TAG }}
allow_tag_override: "true"
oci_title: "52°North Nginx image for GeoNode"
oci_description: "Nginx built for GeoNode from 52north/geonode-docker"
registry_username: ${{ secrets.DOCKERHUB_USERNAME }}
registry_password: ${{ secrets.DOCKERHUB_TOKEN }}
build_and_push_postgis:
runs-on: ubuntu-22.04
env:
IMAGE: 52north/geonode-postgis
steps:
- name: Checkout
uses: actions/checkout@v3
- name: build and push postgis
uses: ./.github/actions/52n-build_and_push
with:
dockerfile: ./docker/postgis/Dockerfile
dockercontext: ./docker/postgis/
image: 52north/geonode-postgis
tags: ${{ env.TAG }}
allow_tag_override: "true"
oci_title: "52°North PostGIS image for GeoNode"
oci_description: "PostGIS Data built for GeoNode from 52north/geonode-docker"
registry_username: ${{ secrets.DOCKERHUB_USERNAME }}
registry_password: ${{ secrets.DOCKERHUB_TOKEN }}