16 lines
352 B
YAML
16 lines
352 B
YAML
|
|
services:
|
||
|
|
app:
|
||
|
|
image: ${IMAGE}
|
||
|
|
container_name: stash
|
||
|
|
restart: unless-stopped
|
||
|
|
pull_policy: always
|
||
|
|
ports:
|
||
|
|
- "${HOST_PORT:-3070}:3070"
|
||
|
|
volumes:
|
||
|
|
# Named volume, not a bind mount — the SQLite DB holding captured
|
||
|
|
# articles and tokens must survive redeploys.
|
||
|
|
- stash-data:/app/data
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
stash-data:
|