14 lines
307 B
YAML
14 lines
307 B
YAML
services:
|
|
grav:
|
|
image: lscr.io/linuxserver/grav:latest
|
|
container_name: intotheeast_grav
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
ports:
|
|
- "8081:80"
|
|
volumes:
|
|
- ./user:/config/www/user
|
|
- ./php/php-local.ini:/config/php/php-local.ini
|
|
restart: unless-stopped
|