8824f79c64
APACHE_RUN_USER/GROUP=#1000 makes PHP/Apache write files owned by the host user (mischa) instead of http. fix-perms target in setup ensures ownership is correct after plugin install. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
355 B
YAML
15 lines
355 B
YAML
services:
|
|
grav:
|
|
image: getgrav/grav
|
|
container_name: intotheeast_grav
|
|
environment:
|
|
- GRAV_CHANNEL=beta
|
|
- APACHE_RUN_USER=#1000
|
|
- APACHE_RUN_GROUP=#1000
|
|
ports:
|
|
- "8081:80"
|
|
volumes:
|
|
- ./user:/var/www/html/user
|
|
- ./php/php-local.ini:/usr/local/etc/php/conf.d/php-local.ini
|
|
restart: unless-stopped
|