mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
* base images and action * fix base docker files * aio base image name change * aio action changes * aio base action cleanup * aio file name changes * base dockerfile updated for warning * fixes * action fix * wip * wip * added app build * checking aio app * fixes * fixes * fixes to app images * fix nginx * fix action * fix base * modified dockerfie * dockerfile fix * fix * pg-setup fix * fix dockerfile-app * fix * fix: dockerfile-app * added cache * fix dockerfile * wip * wip * wip * wip * wip * wip * wip * wip * wip * modified base action caching * modified aio-branch action * wip * feature action modified * action modified * test deployment * fix action * flatten branch name, uninstall helm before installing * wip * testing build * test build * action modified * updated action * feature helm deployment fix * removed feature build cache * enabled cache on aio app build * removed aio.sh
39 lines
963 B
Plaintext
39 lines
963 B
Plaintext
[supervisord]
|
|
user=root
|
|
nodaemon=true
|
|
stderr_logfile=/app/logs/error/supervisor.err.log
|
|
stdout_logfile=/app/logs/access/supervisor.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.log
|
|
|
|
[program:postgresql]
|
|
user=postgres
|
|
command=/usr/lib/postgresql/15/bin/postgres --config-file=/etc/postgresql/postgresql.conf
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/app/logs/error/postgresql.err.log
|
|
stdout_logfile=/app/logs/access/postgresql.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.log
|
|
|
|
[program:nginx]
|
|
directory=/app/data/nginx
|
|
command=/app/nginx-start.sh
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/app/logs/error/nginx.err.log
|
|
stdout_logfile=/app/logs/access/nginx.log
|
|
|