🐳 docker-compose
This commit is contained in:
parent
34d07a4fa1
commit
ca302bb8db
2 changed files with 21 additions and 0 deletions
|
@ -97,6 +97,8 @@ Persistent files are stored in `/app/artifacts` within the container, so you may
|
||||||
|
|
||||||
An [example Kubernetes CronJob](./examples/k8s-cronjob.yaml) for running the container is included in the `examples` folder.
|
An [example Kubernetes CronJob](./examples/k8s-cronjob.yaml) for running the container is included in the `examples` folder.
|
||||||
|
|
||||||
|
An [example Docker Compose Script](./examples/docker-compose.yaml) for running the container periodically is included in the `examples` folder.
|
||||||
|
|
||||||
### Configuration options
|
### Configuration options
|
||||||
|
|
||||||
FediFetcher has quite a few configuration options, so here is my quick configuration advice, that should probably work for most people:
|
FediFetcher has quite a few configuration options, so here is my quick configuration advice, that should probably work for most people:
|
||||||
|
|
19
examples/docker-compose.yaml
Normal file
19
examples/docker-compose.yaml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
name: fedifetcher
|
||||||
|
services:
|
||||||
|
fedifetcher:
|
||||||
|
stdin_open: true
|
||||||
|
tty: true
|
||||||
|
image: ghcr.io/nanos/fedifetcher:latest
|
||||||
|
command: "--access-token=<TOKEN> --server=<SERVER>"
|
||||||
|
# Persist our data
|
||||||
|
volumes:
|
||||||
|
- ./data:/app/artifacts
|
||||||
|
# Use the `deploy` option to enable `restart_policy`
|
||||||
|
deploy:
|
||||||
|
# Don't go above 1 replica to avoid multiple overlapping executions of the script
|
||||||
|
replicas: 1
|
||||||
|
restart_policy:
|
||||||
|
# The `any` condition means even after successful runs, we'll restart the script
|
||||||
|
condition: any
|
||||||
|
# Specify how often the script should run - for example; after 1 hour.
|
||||||
|
delay: 1h
|
Loading…
Reference in a new issue