Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docker-aio): bring PostgREST and Kong subprocesses under supervisorctl management #929

Merged
merged 2 commits into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker/all-in-one/etc/supervisor/services/envoy.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ command=/opt/envoy-hot-restarter.py /opt/start-envoy.sh
user=envoy
autorestart=true
autostart=false
stopasgroup=true
stdout_logfile=/var/log/services/envoy.log
redirect_stderr=true
stdout_logfile_maxbytes=10MB
1 change: 1 addition & 0 deletions docker/all-in-one/etc/supervisor/services/kong.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ command=/init/start-kong.sh
user=kong
autorestart=true
autostart=true
stopasgroup=true
environment=KONG_NGINX_DAEMON="off"
stdout_logfile=/var/log/services/kong.log
redirect_stderr=true
Expand Down
1 change: 1 addition & 0 deletions docker/all-in-one/etc/supervisor/services/postgrest.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ command=/etc/postgrest/bootstrap.sh /etc/postgrest/generated.conf /etc/postgrest
user=postgrest
autorestart=true
autostart=true
stopasgroup=true
stdout_logfile=/var/log/services/postgrest.log
redirect_stderr=true
stdout_logfile_maxbytes=10MB
Loading