forked from github/plane
a8c03281c6
* fix: adding single docker base file * action added * fix action * dockerfile.base modified * action fix * dockerfile * fix: base aio dockerfile * fix: dockerfile.base * fix: dockerfile base * fix: modified folder structure * fix: action * fix: dockerfile * fix: dockerfile.base * fix: supervisor file name changed * fix: base dockerfile updated * fix dockerfile base * fix: base dockerfile * fix: docker files * fix: base dockerfile * update base image * modified docker aio base * aio base modified to debian-12-slim * fixes * finalize the dockerfiles with volume exposure * modified the aio build and dockerfile * fix: codacy suggestions implemented * fix: codacy fix * update aio build action --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
38 lines
1003 B
Plaintext
38 lines
1003 B
Plaintext
[supervisord]
|
|
user=root
|
|
nodaemon=true
|
|
stderr_logfile=/app/logs/error/supervisor.err.log
|
|
stdout_logfile=/app/logs/access/supervisor.out.log
|
|
|
|
[program:redis]
|
|
directory=/app/data/redis
|
|
command=redis-server
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/app/logs/error/redis.err.log
|
|
stdout_logfile=/app/logs/access/redis.out.log
|
|
|
|
[program:postgresql]
|
|
user=postgres
|
|
command=/usr/lib/postgresql/15/bin/postgres --config-file=/etc/postgresql/15/main/postgresql.conf
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/app/logs/error/postgresql.err.log
|
|
stdout_logfile=/app/logs/access/postgresql.out.log
|
|
|
|
[program:minio]
|
|
directory=/app/data/minio
|
|
command=minio server /app/data/minio
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/app/logs/error/minio.err.log
|
|
stdout_logfile=/app/logs/access/minio.out.log
|
|
|
|
[program:nginx]
|
|
directory=/app/data/nginx
|
|
command=/usr/sbin/nginx -g 'daemon off;'
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/app/logs/error/nginx.err.log
|
|
stdout_logfile=/app/logs/access/nginx.out.log
|