This commit is contained in:
parent
18a67fa602
commit
daa4e95a87
10
Dockerfile
10
Dockerfile
|
|
@ -398,7 +398,7 @@ RUN set -ex; \
|
|||
kong version ; \
|
||||
fi
|
||||
|
||||
COPY docker-kong_v2.8.1/ubuntu/docker-entrypoint.sh /docker-entrypoint.sh
|
||||
COPY docker-kong_v2.8.1/ubuntu/docker-entrypoint.sh /supabase/kong/docker-entrypoint.sh
|
||||
|
||||
#USER kong
|
||||
|
||||
|
|
@ -414,16 +414,8 @@ COPY docker-kong_v2.8.1/ubuntu/docker-entrypoint.sh /docker-entrypoint.sh
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
ARG CUDA_VERSION=12.5.1
|
||||
|
||||
|
||||
|
||||
#============================================= sglang ============================================
|
||||
#FROM nvcr.io/nvidia/tritonserver:24.04-py3-min
|
||||
|
||||
|
|
|
|||
|
|
@ -5,25 +5,25 @@ loglevel=info
|
|||
pidfile=/tmp/supervisord.pid
|
||||
|
||||
[program:postgres]
|
||||
command=/supabase/postgres/docker-entrypoint.sh postgres -D /etc/postgresql
|
||||
command=/usr/local/bin/docker-entrypoint.sh postgres -D /etc/postgresql
|
||||
autorestart=true
|
||||
stdout_logfile=/var/log/postgres.out.log
|
||||
stderr_logfile=/var/log/postgres.err.log
|
||||
|
||||
[program:kong]
|
||||
command=/supabase/kong/start.sh
|
||||
command=/supabase/kong/docker-entrypoint.sh kong docker-start
|
||||
autorestart=true
|
||||
stderr_logfile=/var/log/kong.err.log
|
||||
stdout_logfile=/var/log/kong.out.log
|
||||
|
||||
[program:auth]
|
||||
command=/supabase/auth/auth
|
||||
command=/usr/local/bin/auth
|
||||
autorestart=true
|
||||
stderr_logfile=/var/log/auth.err.log
|
||||
stdout_logfile=/var/log/auth.out.log
|
||||
|
||||
[program:postgrest]
|
||||
command=/supabase/postgrest/postgrest /app/postgrest/config.conf
|
||||
command=/usr/bin/postgrest
|
||||
autorestart=true
|
||||
stderr_logfile=/var/log/postgrest.err.log
|
||||
stdout_logfile=/var/log/postgrest.out.log
|
||||
|
|
|
|||
Loading…
Reference in New Issue