1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-21 16:49:40 +08:00
pooneyy 833dcbd3cf
feat(php-unofficial): update php versions and switch to pre-built images
- update php 8.1.32 to 8.1.33 with bookworm base image
- update php 8.4.8 to 8.4.13 with bookworm base image
- switch from local docker builds to pre-built ghcr.io images for all versions
- maintain existing configuration files and environment samples
2025-10-02 22:30:55 +08:00

22 lines
491 B
YAML

services:
php74:
image: ghcr.io/pooneyy/php:7.4.33-fpm-php-unofficial
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:9000"
volumes:
- "./data/php.ini:/usr/local/etc/php/php.ini"
- "./data/php-fpm.conf:/usr/local/etc/php-fpm.d/www.conf"
- "${SITE_PATH}:/www"
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true