19 lines
528 B
YAML
19 lines
528 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
faved:
|
|
image: denho/faved:latest
|
|
|
|
volumes:
|
|
# Required persistence (bookmarks, tags, users, etc.) 【1-fe9697】【3-512901】
|
|
- /mnt/DockerStorage/data/faved:/var/www/html/storage
|
|
# These match the official compose layout (optional but recommended) 【2-51ff7c】
|
|
- /mnt/DockerStorage/data/faved/temp:/tmp
|
|
|
|
deploy:
|
|
replicas: 1
|
|
restart_policy:
|
|
condition: on-failure
|
|
placement:
|
|
constraints:
|
|
- node.platform.os == linux |