refactor: core plugins to plugins-core

This commit is contained in:
xboard
2026-04-18 23:31:19 +08:00
parent fe62542b7c
commit c0b6ee1763
25 changed files with 139 additions and 109 deletions
+3 -1
View File
@@ -32,7 +32,6 @@ COPY .docker/supervisor/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
RUN composer install --no-cache --no-dev \
&& php artisan storage:link \
&& cp -r plugins/ /opt/default-plugins/ \
&& chown -R www:www /www \
&& chmod -R 775 /www \
&& mkdir -p /data \
@@ -44,4 +43,7 @@ ENV ENABLE_WEB=true \
ENABLE_WS_SERVER=false
EXPOSE 7001
COPY .docker/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]