File tree Expand file tree Collapse file tree 10 files changed +24
-24
lines changed
aleph-traefik-minio-keycloak Expand file tree Collapse file tree 10 files changed +24
-24
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 4.1.2
2+ current_version = 4.1.3
33tag_name = {new_version}
44commit = True
55tag = True
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ services:
3636 - " traefik.enable=false"
3737
3838 ingest-file :
39- image : ghcr.io/alephdata/ingest-file:4.0.1
39+ image : ghcr.io/alephdata/ingest-file:4.1.2
4040 tmpfs :
4141 - /tmp:mode=777
4242 volumes :
@@ -54,7 +54,7 @@ services:
5454 - " traefik.enable=false"
5555
5656 worker :
57- image : ghcr.io/alephdata/aleph:${ALEPH_TAG:-4.1.2 }
57+ image : ghcr.io/alephdata/aleph:${ALEPH_TAG:-4.1.3 }
5858 command : aleph worker
5959 restart : on-failure
6060 links :
@@ -79,7 +79,7 @@ services:
7979 - " traefik.enable=false"
8080
8181 shell :
82- image : ghcr.io/alephdata/aleph:${ALEPH_TAG:-4.1.2 }
82+ image : ghcr.io/alephdata/aleph:${ALEPH_TAG:-4.1.3 }
8383 command : /bin/bash
8484 depends_on :
8585 - postgres
@@ -99,7 +99,7 @@ services:
9999 - " traefik.enable=false"
100100
101101 api :
102- image : ghcr.io/alephdata/aleph:${ALEPH_TAG:-4.1.2 }
102+ image : ghcr.io/alephdata/aleph:${ALEPH_TAG:-4.1.3 }
103103 command : gunicorn -w 6 -b 0.0.0.0:8000 --log-level debug --log-file - aleph.wsgi:app
104104 expose :
105105 - 8000
@@ -121,7 +121,7 @@ services:
121121 - " traefik.enable=false"
122122
123123 ui :
124- image : ghcr.io/alephdata/aleph-ui-production:${ALEPH_TAG:-4.1.2 }
124+ image : ghcr.io/alephdata/aleph-ui-production:${ALEPH_TAG:-4.1.3 }
125125 depends_on :
126126 - api
127127 - traefik
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ services:
1616 elasticsearch :
1717 build :
1818 context : services/elasticsearch
19- image : ghcr.io/alephdata/aleph-elasticsearch:${ALEPH_TAG:-4.1.2 }
19+ image : ghcr.io/alephdata/aleph-elasticsearch:${ALEPH_TAG:-4.1.3 }
2020 hostname : elasticsearch
2121 environment :
2222 - discovery.type=single-node
@@ -35,7 +35,7 @@ services:
3535 ingest-file :
3636 build :
3737 context : services/ingest-file
38- image : ghcr.io/alephdata/ingest-file:4.0.1
38+ image : ghcr.io/alephdata/ingest-file:4.1.2
3939 hostname : ingest
4040 tmpfs : /tmp
4141 volumes :
@@ -55,7 +55,7 @@ services:
5555 app :
5656 build :
5757 context : .
58- image : alephdata/aleph:${ALEPH_TAG:-4.1.2 }
58+ image : alephdata/aleph:${ALEPH_TAG:-4.1.3 }
5959 hostname : aleph
6060 command : /bin/bash
6161 links :
@@ -83,7 +83,7 @@ services:
8383 api :
8484 build :
8585 context : .
86- image : alephdata/aleph:${ALEPH_TAG:-4.1.2 }
86+ image : alephdata/aleph:${ALEPH_TAG:-4.1.3 }
8787 command : aleph run -h 0.0.0.0 -p 5000 --with-threads --reload --debugger
8888 ports :
8989 - " 127.0.0.1:5000:5000"
@@ -117,7 +117,7 @@ services:
117117 ui :
118118 build :
119119 context : ui
120- image : alephdata/aleph-ui:${ALEPH_TAG:-4.1.2 }
120+ image : alephdata/aleph-ui:${ALEPH_TAG:-4.1.3 }
121121 links :
122122 - api
123123 command : npm run start
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ services:
5050 tmpfs : /tmp
5151
5252 ingest-file :
53- image : ghcr.io/alephdata/ingest-file:4.0.1
53+ image : ghcr.io/alephdata/ingest-file:4.1.2
5454 # build:
5555 # context: ../ingest-file
5656 hostname : ingest
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ services:
3333 - rabbitmq-data:/var/lib/rabbitmq/
3434
3535 ingest-file :
36- image : ghcr.io/alephdata/ingest-file:4.0.1
36+ image : ghcr.io/alephdata/ingest-file:4.1.2
3737 tmpfs :
3838 - /tmp:mode=777
3939 volumes :
@@ -46,7 +46,7 @@ services:
4646 - aleph.env
4747
4848 worker :
49- image : ghcr.io/alephdata/aleph:${ALEPH_TAG:-4.1.2 }
49+ image : ghcr.io/alephdata/aleph:${ALEPH_TAG:-4.1.3 }
5050 command : aleph worker
5151 restart : on-failure
5252 depends_on :
@@ -62,7 +62,7 @@ services:
6262 - aleph.env
6363
6464 shell :
65- image : ghcr.io/alephdata/aleph:${ALEPH_TAG:-4.1.2 }
65+ image : ghcr.io/alephdata/aleph:${ALEPH_TAG:-4.1.3 }
6666 command : /bin/bash
6767 depends_on :
6868 - postgres
@@ -80,7 +80,7 @@ services:
8080 - aleph.env
8181
8282 api :
83- image : ghcr.io/alephdata/aleph:${ALEPH_TAG:-4.1.2 }
83+ image : ghcr.io/alephdata/aleph:${ALEPH_TAG:-4.1.3 }
8484 expose :
8585 - 8000
8686 depends_on :
@@ -97,7 +97,7 @@ services:
9797 - aleph.env
9898
9999 ui :
100- image : ghcr.io/alephdata/aleph-ui-production:${ALEPH_TAG:-4.1.2 }
100+ image : ghcr.io/alephdata/aleph-ui-production:${ALEPH_TAG:-4.1.3 }
101101 depends_on :
102102 - api
103103 ports :
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
22name : aleph
33description : Helm chart for Aleph
44type : application
5- version : 4.1.2
6- appVersion : 4.1.2
5+ version : 4.1.3
6+ appVersion : 4.1.3
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Helm chart for Aleph
1111| global.amazon | bool | ` true ` | Are we using AWS services like s3? |
1212| global.google | bool | ` false ` | Are we using GCE services like storage, vision api? |
1313| global.image.repository | string | ` "alephdata/aleph" ` | Aleph docker image repo |
14- | global.image.tag | string | ` "4.1.2 " ` | Aleph docker image tag |
14+ | global.image.tag | string | ` "4.1.3 " ` | Aleph docker image tag |
1515| global.image.tag | string | ` "Always" ` | |
1616| global.namingPrefix | string | ` "aleph" ` | Prefix for the names of k8s resources |
1717
Original file line number Diff line number Diff line change 66
77 image :
88 repository : ghcr.io/alephdata/aleph
9- tag : " 4.1.2 "
9+ tag : " 4.1.3 "
1010 pullPolicy : Always
1111
1212 commonEnv :
@@ -125,7 +125,7 @@ ingestfile:
125125
126126 image :
127127 repository : ghcr.io/alephdata/ingest-file
128- tag : " 3.22.0 "
128+ tag : " 4.1.2 "
129129 pullPolicy : Always
130130
131131 containerSecurityContext :
Original file line number Diff line number Diff line change 22
33setup (
44 name = "aleph" ,
5- version = "4.1.2 " ,
5+ version = "4.1.3 " ,
66 description = "Document sifting web frontend" ,
77 classifiers = [
88 "Intended Audience :: Developers" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " aleph-ui" ,
3- "version" : " 4.1.2 " ,
3+ "version" : " 4.1.3 " ,
44 "private" : true ,
55 "dependencies" : {
66 "@alephdata/followthemoney" : " ^3.8.2" ,
You can’t perform that action at this time.
0 commit comments