Update README.md

This commit is contained in:
Nick Sweeting 2023-05-22 13:51:53 -07:00 committed by GitHub
parent 4388938fe5
commit 53a5679aa1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,4 +2,26 @@
Container state will be automatically stored in this folder, with one subfolder per container (as configured by the `volumes:` sections in the `docker-compose.yml` file).
You must create this folder manually if you downloaded the `docker-compose.yml` file. You can also clone the entire repo in order to not have to make the folder manually.
(Depending on your host OS and Docker setup, you may need to manually `chown` this folder to have `777` permissions so that containers using weird UIDs can still create their data folders within.)
You must create this folder manually if you downloaded the `docker-compose.yml` file.
```bash
# cd good-karma-kit
# nano docker-compose.yml
mkdir ./data
chmod 777 ./data
ls -lah ./data
```
<br/>
You can also clone the entire repo in order to not have to make the folder manually.
```bash
# git clone https://github.com/ArchiveBox/good-karma-kit
# cd good-karma-kit
ls -lah ./data
```