diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-08-04 12:59:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-04 12:59:27 +0100 |
commit | 166fafdf8da0d3482ce62cc8c2b1cd140aa419c0 (patch) | |
tree | a709ca7e127223d04df45fb96bea82cd21fac076 /docker/conf-workers | |
parent | Add module API method to create a room (#13429) (diff) | |
download | synapse-166fafdf8da0d3482ce62cc8c2b1cd140aa419c0.tar.xz |
synapse-workers docker: copy nginx and redis in from base images (#13447)
Part of my continuing quest to make the docker images build quicker: copy nginx and redis in from base docker images, rather than apt installing each time.
Diffstat (limited to 'docker/conf-workers')
-rw-r--r-- | docker/conf-workers/supervisord.conf.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/conf-workers/supervisord.conf.j2 b/docker/conf-workers/supervisord.conf.j2 index 086137494e..9f1e03cfc0 100644 --- a/docker/conf-workers/supervisord.conf.j2 +++ b/docker/conf-workers/supervisord.conf.j2 @@ -19,7 +19,7 @@ username=www-data autorestart=true [program:redis] -command=/usr/local/bin/prefix-log /usr/bin/redis-server /etc/redis/redis.conf --daemonize no +command=/usr/local/bin/prefix-log /usr/local/bin/redis-server priority=1 stdout_logfile=/dev/stdout stdout_logfile_maxbytes=0 |