mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
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>
116 lines
2.4 KiB
Plaintext
116 lines
2.4 KiB
Plaintext
[supervisord]
|
|
user=root
|
|
nodaemon=true
|
|
priority=1
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:redis]
|
|
directory=/app/data/redis
|
|
command=redis-server
|
|
autostart=true
|
|
autorestart=true
|
|
priority=1
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:postgresql]
|
|
user=postgres
|
|
command=/usr/lib/postgresql/15/bin/postgres -D /var/lib/postgresql/data --config-file=/etc/postgresql/postgresql.conf
|
|
autostart=true
|
|
autorestart=true
|
|
priority=1
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:minio]
|
|
directory=/app/data/minio
|
|
command=minio server /app/data/minio
|
|
autostart=true
|
|
autorestart=true
|
|
priority=1
|
|
stdout_logfile=/app/logs/access/minio.log
|
|
stderr_logfile=/app/logs/error/minio.err.log
|
|
|
|
[program:nginx]
|
|
command=/app/nginx-start.sh
|
|
autostart=true
|
|
autorestart=true
|
|
priority=1
|
|
stdout_logfile=/app/logs/access/nginx.log
|
|
stderr_logfile=/app/logs/error/nginx.err.log
|
|
|
|
|
|
[program:web]
|
|
command=/app/aio.sh web
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
environment=PORT=3001,HOSTNAME=0.0.0.0
|
|
|
|
[program:space]
|
|
command=/app/aio.sh space
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
environment=PORT=3002,HOSTNAME=0.0.0.0
|
|
|
|
[program:admin]
|
|
command=/app/aio.sh admin
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
environment=PORT=3003,HOSTNAME=0.0.0.0
|
|
|
|
[program:migrator]
|
|
command=/app/aio.sh migrator
|
|
autostart=true
|
|
autorestart=false
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:api]
|
|
command=/app/aio.sh api
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:worker]
|
|
command=/app/aio.sh worker
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:beat]
|
|
command=/app/aio.sh beat
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
|