Spaces:
Build error
Build error
[supervisord] | |
nodaemon=true | |
[program:redis] | |
command=redis-server # command to run redis service | |
autorestart=true | |
stderr_logfile=/dev/stdout | |
stderr_logfile_maxbytes = 0 | |
stdout_logfile=/dev/stdout | |
stdout_logfile_maxbytes = 0 | |
[program:postgres] | |
command=/usr/lib/postgresql/12/bin/postgres -D /var/lib/postgresql/12/main/ -c config_file=/etc/postgresql/12/main/postgresql.conf # command to run postgres service | |
autostart=true | |
autorestart=true | |
stderr_logfile=/dev/stdout | |
stderr_logfile_maxbytes = 0 | |
stdout_logfile=/dev/stdout | |
stdout_logfile_maxbytes = 0 | |
user=postadmin | |
environment=HOME="/var/lib/postgresql",USER="postadmin" |