mirror of
https://gh.wpcy.net/https://github.com/WPTechnix/wp-settings-framework.git
synced 2026-04-26 03:55:21 +08:00
21 lines
487 B
YAML
21 lines
487 B
YAML
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
args:
|
|
USER_ID: ${UID:-1000}
|
|
GROUP_ID: ${GID:-1000}
|
|
PHP_VERSION: ${PHP_VERSION:-8.4}
|
|
container_name: ${COMPOSE_PROJECT_NAME:-wp-settings-framework}-php
|
|
user: "${UID:-1000}:${GID:-1000}"
|
|
volumes:
|
|
- ../:/app
|
|
- ./php.ini:/usr/local/etc/php/conf.d/custom.ini
|
|
tty: true
|
|
stdin_open: true
|
|
networks:
|
|
- wp-settings-framework
|
|
|
|
networks:
|
|
wp-settings-framework:
|
|
driver: bridge
|