Skip to content

Commit df3ee54

Browse files
committed
chore: fix gotrue
1 parent f33e6fb commit df3ee54

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

.github/workflows/dockerhub-release-aio.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- develop
7-
- pcnc/update-adminmgr
87
paths:
98
- ".github/workflows/dockerhub-release-aio.yml"
109
- "docker/all-in-one/*"

.github/workflows/dockerhub-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- develop
7-
- pcnc/update-adminmgr
87
paths:
98
- ".github/workflows/dockerhub-release.yml"
109
- "common.vars*"

ansible/vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ postgres_exporter_release_checksum:
4747
amd64: sha256:cb89fc5bf4485fb554e0d640d9684fae143a4b2d5fa443009bd29c59f9129e84
4848

4949
adminapi_release: 0.58.1
50-
adminmgr_release: 0.14.0
50+
adminmgr_release: 0.14.2
5151

5252
# Postgres Extensions
5353
postgis_release: "3.3.2"

docker/all-in-one/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG pgbouncer_release=1.18.0
44
ARG postgrest_release=10.1.2
55
ARG gotrue_release=2.47.0
66
ARG adminapi_release=0.58.1
7-
ARG adminmgr_release=0.14.1
7+
ARG adminmgr_release=0.14.2
88
ARG vector_release=0.22.3
99
ARG postgres_exporter_release=0.9.0
1010
ARG envoy_release=1.28.0
@@ -154,8 +154,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
154154

155155
# Copy single binary dependencies
156156
COPY --from=pgrst /bin/postgrest /dist/
157-
COPY --from=gotrue /usr/local/bin/gotrue /dist/
158-
COPY --from=gotrue /usr/local/etc/gotrue /opt/gotrue/
157+
COPY --from=gotrue /usr/local/bin/auth /dist/gotrue
158+
COPY --from=gotrue /usr/local/etc/auth /opt/gotrue/
159159
COPY --from=envoy /usr/local/bin/envoy /dist/
160160
COPY --from=adminapi /tmp/supabase-admin-api /dist/
161161
COPY --chown=root:root --from=adminmgr /tmp/admin-mgr /dist/

docker/all-in-one/shutdown.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ SQL
5959
# This is to ensure that the WAL file is shipped, just in case
6060
sleep 1
6161

62-
/usr/bin/admin-mgr lsn-checkpoint-push || echo "Failed to push LSN checkpoint"
62+
/usr/bin/admin-mgr lsn-checkpoint-push --immediately || echo "Failed to push LSN checkpoint"
6363

6464
kill -s TERM "$(supervisorctl pid)"
6565
fi

0 commit comments

Comments
 (0)