-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4bcd3f2
commit 3690a22
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# CasaOS Dockerized Grav | ||
--- | ||
```md | ||
> Grav is a free software, self-hosted content management system (CMS) written in the PHP programming language and based on the Symfony web application framework. It uses a flat file database for both backend and frontend. | ||
|
||
Grav is designed to have a shallow learning curve, and to be easy to set up. The focus of Grav is speed and simplicity, rather than an abundance of built-in features that come at the expense of complexity. | ||
``` | ||
```md | ||
# How To Use The App & or What's Included If Basic App | ||
1.) Simply Install it. | ||
``` | ||
--- | ||
|
||
### Ports Used | ||
```md | ||
> | 80:80 | | ||
``` | ||
--- | ||
|
||
### Volumes Used | ||
```yaml | ||
volumes: | ||
- type: bind | ||
source: /DATA/AppData/grav/config | ||
target: /config | ||
``` | ||
> Explanation on how To change the source that data will be saved | say your storage is called `Storage1` and it is located on `/mnt` this would mean you would change | ||
```yaml | ||
source: /DATA/AppData/grav/config | ||
``` | ||
> To | ||
```yaml | ||
source: /mnt/Storage1/DATA/AppData/grav/config | ||
``` |