mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-16 12:13:26 +00:00
23 lines
574 B
YAML
23 lines
574 B
YAML
# Grav is a Fast, Simple, and Flexible, file-based Web-platform.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
grav:
|
|
image: ghcr.io/linuxserver/grav
|
|
container_name: grav
|
|
environment:
|
|
# for GroupID
|
|
- PUID=${PUID:-1024}
|
|
# for UserID
|
|
- PGID=${PGID:-100}
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Contains all relevant configuration files.
|
|
- ${BASEDIR:-/volume1/docker}/grav/config:/config
|
|
ports:
|
|
# Port for web frontend
|
|
- 80:80
|
|
restart: unless-stopped
|