From dd481f1a3c1f53270dab264f22a2ee38fafb2625 Mon Sep 17 00:00:00 2001 From: Soap Date: Tue, 7 Oct 2025 20:41:44 +0000 Subject: [PATCH] Initial Docker compose --- copyparty/cfg/docker-compose.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 copyparty/cfg/docker-compose.yml diff --git a/copyparty/cfg/docker-compose.yml b/copyparty/cfg/docker-compose.yml new file mode 100644 index 0000000..07023ad --- /dev/null +++ b/copyparty/cfg/docker-compose.yml @@ -0,0 +1,19 @@ +services: + copyparty: + image: copyparty/ac + container_name: copyparty + user: "1000" # use the "id" command + ports: + - "3923:3923" + volumes: + - /mnt/c:/w/c # drives are based on what I have + - /mnt/d:/w/d + - /mnt/e:/w/e + - /mnt/x:/w/x + - type: bind + source: ./cfg + target: /cfg + consistency: consistent # unreliable when u change ze config, else cool + stdin_open: true + tty: true + restart: "always" \ No newline at end of file