From 930704be5fce5edf939ae0f997c6a113118fcdc1 Mon Sep 17 00:00:00 2001 From: drifty Date: Thu, 16 Jan 2025 12:25:26 +0530 Subject: [PATCH] Create compose.yml --- docker-compose-files/copyparty/compose.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docker-compose-files/copyparty/compose.yml diff --git a/docker-compose-files/copyparty/compose.yml b/docker-compose-files/copyparty/compose.yml new file mode 100644 index 0000000..e172ceb --- /dev/null +++ b/docker-compose-files/copyparty/compose.yml @@ -0,0 +1,20 @@ +version: '3' +services: + + copyparty: + image: copyparty/ac:latest + container_name: copyparty + user: "1000:1000" + ports: + - 3923:3923 + volumes: + - ./:/cfg:z + - /path/you/want/to/share/publicly:/w:z + + stop_grace_period: 15s # thumbnailer is allowed to continue finishing up for 10s after the shutdown signal + healthcheck: + test: ["CMD-SHELL", "wget --spider -q 127.0.0.1:3923/?reset"] + interval: 1m + timeout: 2s + retries: 5 + start_period: 15s