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