Merge branch 'refactor' into localApps
This commit is contained in:
commit
59eba8f415
|
|
@ -1,12 +1,5 @@
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
formFields:
|
formFields:
|
||||||
- default: "./data"
|
|
||||||
edit: true
|
|
||||||
envKey: ACG_FAKA_ROOT_PATH
|
|
||||||
labelZh: 数据持久化路径
|
|
||||||
labelEn: Data persistence path
|
|
||||||
required: true
|
|
||||||
type: text
|
|
||||||
- default: 8080
|
- default: 8080
|
||||||
edit: true
|
edit: true
|
||||||
envKey: PANEL_APP_PORT_HTTP
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
|
@ -4,7 +4,7 @@ networks:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
acg-faka:
|
acg-faka:
|
||||||
image: qyg2297248353/acg-faka:v1.3.9
|
image: ghcr.io/pooneyy/acg-faka:3.2.1
|
||||||
container_name: ${CONTAINER_NAME}
|
container_name: ${CONTAINER_NAME}
|
||||||
labels:
|
labels:
|
||||||
createdBy: "Apps"
|
createdBy: "Apps"
|
||||||
|
|
@ -13,5 +13,3 @@ services:
|
||||||
- 1panel-network
|
- 1panel-network
|
||||||
ports:
|
ports:
|
||||||
- ${PANEL_APP_PORT_HTTP}:80
|
- ${PANEL_APP_PORT_HTTP}:80
|
||||||
volumes:
|
|
||||||
- ${ACG_FAKA_ROOT_PATH}:/var/www/html
|
|
||||||
|
|
@ -0,0 +1,21 @@
|
||||||
|
From php:8.4-apache-bookworm
|
||||||
|
ARG REF main
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
git \
|
||||||
|
libfreetype6-dev \
|
||||||
|
libjpeg-dev \
|
||||||
|
libpng-dev \
|
||||||
|
libwebp-dev \
|
||||||
|
libzip-dev \
|
||||||
|
zlib1g-dev && \
|
||||||
|
docker-php-ext-configure gd --enable-gd --with-freetype --with-jpeg --with-webp && \
|
||||||
|
docker-php-ext-configure pdo_mysql --with-pdo-mysql=mysqlnd && \
|
||||||
|
docker-php-ext-configure zip && \
|
||||||
|
docker-php-ext-install gd pdo_mysql zip && \
|
||||||
|
apt-get clean && \
|
||||||
|
rm -rf /var/lib/apt/lists/* && \
|
||||||
|
git config --global --add safe.directory /var/www/html && \
|
||||||
|
git clone https://github.com/lizhipay/acg-faka . && \
|
||||||
|
git checkout $REF && \
|
||||||
|
rm -rf .git && \
|
||||||
|
a2enmod rewrite
|
||||||
|
|
@ -4,7 +4,7 @@ networks:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
iframely:
|
iframely:
|
||||||
image: qyg2297248353/iframely:v2.4.3
|
image: ghcr.io/pooneyy/iframely:2.5.0
|
||||||
container_name: ${CONTAINER_NAME}
|
container_name: ${CONTAINER_NAME}
|
||||||
labels:
|
labels:
|
||||||
createdBy: "Apps"
|
createdBy: "Apps"
|
||||||
|
|
@ -4,7 +4,7 @@ networks:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
kotatsu-syncserver:
|
kotatsu-syncserver:
|
||||||
image: qyg2297248353/kotatsu-syncserver:v20250725
|
image: ghcr.io/pooneyy/kotatsu-syncserver:20250804
|
||||||
container_name: ${CONTAINER_NAME}
|
container_name: ${CONTAINER_NAME}
|
||||||
labels:
|
labels:
|
||||||
createdBy: "Apps"
|
createdBy: "Apps"
|
||||||
|
|
@ -1,12 +1,5 @@
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
formFields:
|
formFields:
|
||||||
- default: "./data"
|
|
||||||
edit: true
|
|
||||||
envKey: MACCMS10_ROOT_PATH
|
|
||||||
labelZh: 数据持久化路径
|
|
||||||
labelEn: Data persistence path
|
|
||||||
required: true
|
|
||||||
type: text
|
|
||||||
- default: 80
|
- default: 80
|
||||||
edit: true
|
edit: true
|
||||||
envKey: PANEL_APP_PORT_HTTP
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
|
@ -4,7 +4,7 @@ networks:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
maccms10:
|
maccms10:
|
||||||
image: qyg2297248353/maccms10:v24.11.19
|
image: ghcr.io/pooneyy/maccms10:2025.1000.4050
|
||||||
container_name: ${CONTAINER_NAME}
|
container_name: ${CONTAINER_NAME}
|
||||||
labels:
|
labels:
|
||||||
createdBy: "Apps"
|
createdBy: "Apps"
|
||||||
|
|
@ -13,5 +13,3 @@ services:
|
||||||
- 1panel-network
|
- 1panel-network
|
||||||
ports:
|
ports:
|
||||||
- ${PANEL_APP_PORT_HTTP}:80
|
- ${PANEL_APP_PORT_HTTP}:80
|
||||||
volumes:
|
|
||||||
- ${MACCMS10_ROOT_PATH}/www:/var/www
|
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
From php:8-apache-bookworm
|
||||||
|
ARG REF master
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
git \
|
||||||
|
libzip-dev && \
|
||||||
|
docker-php-ext-configure pdo_mysql --with-pdo-mysql=mysqlnd && \
|
||||||
|
docker-php-ext-configure zip && \
|
||||||
|
docker-php-ext-install pdo_mysql zip && \
|
||||||
|
apt-get clean && \
|
||||||
|
rm -rf /var/lib/apt/lists/* && \
|
||||||
|
git config --global --add safe.directory /var/www/html && \
|
||||||
|
git clone https://github.com/magicblack/maccms10 . && \
|
||||||
|
git checkout $REF && \
|
||||||
|
rm -rf .git && \
|
||||||
|
chmod -R 777 application runtime upload
|
||||||
|
|
@ -1,12 +1,5 @@
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
formFields:
|
formFields:
|
||||||
- default: "./data"
|
|
||||||
edit: true
|
|
||||||
envKey: MCY_SHOP_ROOT_PATH
|
|
||||||
labelZh: 数据持久化路径
|
|
||||||
labelEn: Data persistence path
|
|
||||||
required: true
|
|
||||||
type: text
|
|
||||||
- default: 8080
|
- default: 8080
|
||||||
edit: true
|
edit: true
|
||||||
envKey: PANEL_APP_PORT_HTTP
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
|
@ -4,7 +4,7 @@ networks:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
mcy-shop:
|
mcy-shop:
|
||||||
image: qyg2297248353/mcy-shop:v5.0.17
|
image: ghcr.io/pooneyy/mcy-shop:5.0.29
|
||||||
container_name: ${CONTAINER_NAME}
|
container_name: ${CONTAINER_NAME}
|
||||||
labels:
|
labels:
|
||||||
createdBy: "Apps"
|
createdBy: "Apps"
|
||||||
|
|
@ -13,5 +13,3 @@ services:
|
||||||
- 1panel-network
|
- 1panel-network
|
||||||
ports:
|
ports:
|
||||||
- ${PANEL_APP_PORT_HTTP}:80
|
- ${PANEL_APP_PORT_HTTP}:80
|
||||||
volumes:
|
|
||||||
- ${MCY_SHOP_ROOT_PATH}/data:/var/www/html
|
|
||||||
|
|
@ -0,0 +1,21 @@
|
||||||
|
From php:8-apache-bookworm
|
||||||
|
ARG REF main
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
git \
|
||||||
|
libfreetype6-dev \
|
||||||
|
libjpeg-dev \
|
||||||
|
libpng-dev \
|
||||||
|
libwebp-dev \
|
||||||
|
libzip-dev && \
|
||||||
|
docker-php-ext-configure gd --enable-gd --with-freetype --with-jpeg --with-webp && \
|
||||||
|
docker-php-ext-configure pdo_mysql --with-pdo-mysql=mysqlnd && \
|
||||||
|
docker-php-ext-configure zip && \
|
||||||
|
docker-php-ext-install gd pdo_mysql zip && \
|
||||||
|
apt-get clean && \
|
||||||
|
rm -rf /var/lib/apt/lists/* && \
|
||||||
|
git config --global --add safe.directory /var/www/html && \
|
||||||
|
git clone https://github.com/lizhipay/mcy-shop . && \
|
||||||
|
git checkout $REF && \
|
||||||
|
rm -rf .git && \
|
||||||
|
chmod -R 777 ./* && \
|
||||||
|
a2enmod rewrite
|
||||||
Loading…
Reference in New Issue