mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-16 12:13:26 +00:00
24 lines
668 B
YAML
24 lines
668 B
YAML
# [Grav](https://github.com/getgrav/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 UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
|
- 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
|