Files
Homelab/copyparty/compose.yml

33 lines
982 B
YAML

services:
copyparty:
image: copyparty/ac:latest
container_name: copyparty
user: "1000:1000"
restart: always
volumes:
- ${PWD}/cfg:/cfg:z
- /mnt/samsung/copyparty/public:/public:z
- /mnt/samsung/copyparty/private:/private:z
environment:
LD_PRELOAD: /usr/lib/libmimalloc-secure.so.2
# enable mimalloc by replacing "NOPE" with "2" for a nice speed-boost (will use twice as much ram)
PYTHONUNBUFFERED: 0
# ensures log-messages are not delayed (but can reduce speed a tiny bit)
stop_grace_period: 15s # thumbnailer is allowed to continue finishing up for 10s after the shutdown signal
healthcheck:
# hide it from logs with "/._" so it matches the default --lf-url filter
test: ["CMD-SHELL", "wget --spider -q 127.0.0.1:3923/?reset=/._"]
interval: 1m
timeout: 2s
retries: 5
start_period: 15s
networks:
- cloudflared
networks:
cloudflared:
external: true