Skip to content

Commit 6e9768b

Browse files
committed
Remove postgis and update to latest unstable versions
1 parent 6ab2bc7 commit 6e9768b

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

docker-compose.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
- 80:80
99

1010
postgres:
11-
image: ghcr.io/baosystems/postgis:15-3.3 # see https://github.com/postgis/docker-postgis/issues/216
11+
image: postgres:15-alpine
1212
volumes:
1313
- ./postgres/init_dbs.sql:/docker-entrypoint-initdb.d/dev_dbs.sql
1414
- postgres:/var/lib/postgresql/data
@@ -81,7 +81,7 @@ services:
8181
build:
8282
context: ./rapidpro/
8383
args:
84-
- RAPIDPRO_TAG=v10.0.1
84+
- RAPIDPRO_TAG=v10.1.219
8585
command: ["webapp"]
8686
depends_on:
8787
postgres:
@@ -111,18 +111,19 @@ services:
111111
build:
112112
context: ./rapidpro/
113113
args:
114-
- RAPIDPRO_TAG=v10.0.0
114+
- RAPIDPRO_TAG=v10.1.219
115115
command: ["celery"]
116116
depends_on:
117117
rapidpro:
118118
condition: service_healthy
119119
environment:
120120
MAILROOM_URL: http://mailroom:8090
121+
MAILROOM_AUTH_TOKEN: topsecret
121122

122123
mailroom:
123124
image: nyaruka/mailroom:stable
124125
build:
125-
context: https://github.com/nyaruka/mailroom.git#v10.0.0
126+
context: https://github.com/nyaruka/mailroom.git#v10.1.158
126127
dockerfile: Dockerfile
127128
depends_on:
128129
rapidpro:
@@ -152,7 +153,7 @@ services:
152153
courier:
153154
image: nyaruka/courier:stable
154155
build:
155-
context: https://github.com/nyaruka/courier.git#v10.0.0
156+
context: https://github.com/nyaruka/courier.git#v10.1.35
156157
dockerfile: Dockerfile
157158
depends_on:
158159
rapidpro:
@@ -162,7 +163,7 @@ services:
162163
environment:
163164
COURIER_ADDRESS: 0.0.0.0
164165
COURIER_DB: postgres://temba:temba@postgres:5432/temba?sslmode=disable
165-
COURIER_valkey: valkey://valkey:6379/15
166+
COURIER_VALKEY: valkey://valkey:6379/15
166167
COURIER_DOMAIN: ${COURIER_DOMAIN:-host.docker.internal}
167168
COURIER_BASE_URL: ${COURIER_BASE_URL:-https://host.docker.internal}
168169
COURIER_DISALLOWED_NETWORKS: 6.6.6.6
@@ -179,7 +180,7 @@ services:
179180
indexer:
180181
image: nyaruka/indexer:stable
181182
build:
182-
context: https://github.com/nyaruka/rp-indexer.git#v10.0.0
183+
context: https://github.com/nyaruka/rp-indexer.git#v10.1.1
183184
dockerfile: Dockerfile
184185
depends_on:
185186
rapidpro:

rapidpro/entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/sh
22

33
export REMOTE_CONTAINERS=true
4+
export POSTGIS=off
45

56
ACTION=${1:-webapp}
67

0 commit comments

Comments
 (0)