Add note about configuration for pict-rs on bare metal
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
asonix 2023-06-20 12:46:34 -05:00
parent 7e5c8da53b
commit 9d3fca9e21

View file

@ -127,7 +127,7 @@ Options:
``` ```
Try running `help` commands for more runtime configuration options Try running `help` commands for more runtime configuration options
``` ```bash
$ pict-rs run filesystem -h $ pict-rs run filesystem -h
$ pict-rs run object-storage -h $ pict-rs run object-storage -h
$ pict-rs run filesystem sled -h $ pict-rs run filesystem sled -h
@ -139,37 +139,37 @@ configuration
##### Example: ##### Example:
Run with the default configuration Run with the default configuration
``` ```bash
$ ./pict-rs run $ ./pict-rs run
``` ```
Running on all interfaces, port 8080, storing data in /opt/data Running on all interfaces, port 8080, storing data in /opt/data
``` ```bash
$ ./pict-rs run -a 0.0.0.0:8080 filesystem -p /opt/data/files sled -p /opt/data/sled-repo $ ./pict-rs run -a 0.0.0.0:8080 filesystem -p /opt/data/files sled -p /opt/data/sled-repo
``` ```
Running locally, port 9000, storing data in data/, and converting all uploads to PNG Running locally, port 9000, storing data in data/, and converting all uploads to PNG
``` ```bash
$ ./pict-rs run -a 127.0.0.1:9000 --media-format png filesystem -p data/files sled -p data/sled-repo $ ./pict-rs run -a 127.0.0.1:9000 --media-format png filesystem -p data/files sled -p data/sled-repo
``` ```
Running locally, port 8080, storing data in data/, and only allowing the `thumbnail` and `identity` filters Running locally, port 8080, storing data in data/, and only allowing the `thumbnail` and `identity` filters
``` ```bash
$ ./pict-rs run -a 127.0.0.1:8080 --media-filters thumbnail --media-filters identity filesystem -p data/files sled -p data/sled-repo $ ./pict-rs run -a 127.0.0.1:8080 --media-filters thumbnail --media-filters identity filesystem -p data/files sled -p data/sled-repo
``` ```
Running from a configuration file Running from a configuration file
``` ```bash
$ ./pict-rs -c ./pict-rs.toml run $ ./pict-rs -c ./pict-rs.toml run
``` ```
Migrating to object storage from filesystem storage Migrating to object storage from filesystem storage
``` ```bash
$ ./pict-rs filesystem -p data/sled-repo object-storage -a ACCESS_KEY -b BUCKET_NAME -r REGION -s SECRET_KEY $ ./pict-rs filesystem -p data/sled-repo object-storage -a ACCESS_KEY -b BUCKET_NAME -r REGION -s SECRET_KEY
``` ```
Dumping configuration overrides to a toml file Dumping configuration overrides to a toml file
``` ```bash
$ ./pict-rs --save-to pict-rs.toml run object-storage -a ACCESS_KEY -b pict-rs -r us-east-1 -s SECRET_KEY sled -p data/sled-repo $ ./pict-rs --save-to pict-rs.toml run object-storage -a ACCESS_KEY -b pict-rs -r us-east-1 -s SECRET_KEY sled -p data/sled-repo
``` ```
#### Docker #### Docker
Run the following commands: Run the following commands:
``` ```bash
# Create a folder for the files (anywhere works) # Create a folder for the files (anywhere works)
$ mkdir ./pict-rs $ mkdir ./pict-rs
$ cd ./pict-rs $ cd ./pict-rs
@ -189,6 +189,13 @@ There are a few options for acquiring pict-rs to run outside of docker.
2. Binary download from [the releases page](https://git.asonix.dog/asonix/pict-rs/tags) 2. Binary download from [the releases page](https://git.asonix.dog/asonix/pict-rs/tags)
3. Compiled from source 3. Compiled from source
If running outside of docker, the recommended configuration method is via the
[`pict-rs.toml`](./pict-rs.toml) file. When running pict-rs, the file can be passed to the binary as
a commandline argument.
```bash
$ pict-rs -c /path/to/pict-rs.toml run
```
##### Distro Package ##### Distro Package
If getting pict-rs from your distro, please make sure it's a recent version (meaning 0.3.x stable, If getting pict-rs from your distro, please make sure it's a recent version (meaning 0.3.x stable,
or 0.4.0-rc.x). If it is older, consider using an alternative option for installing pict-rs. I am or 0.4.0-rc.x). If it is older, consider using an alternative option for installing pict-rs. I am