Please could you add copyparty to Casaos? It would be a great addition. Thanks

Please could you add copyparty to Casaos? It would be a great addition. Thanks

In the meantime, this works for me :slight_smile:

name: copyparty
services:
  copyparty:
    cpu_shares: 90
    command: []
    container_name: copyparty
    deploy:
      resources:
        limits:
          memory: 67257139200
        reservations:
          devices: []
    image: copyparty/ac:latest
    labels:
      icon: https://icon.casaos.io/main/all/copyparty.png
    ports:
      - target: 3923
        published: "3923"
        protocol: tcp
    restart: unless-stopped
    volumes:
      - type: bind
        source: /DATA/AppData/copyparty/cfg/
        target: /cfg
      - type: bind
        source: /DATA/AppData/copyparty/db
        target: /cfg/hists
      - type: bind
        source: /DATA/Media
        target: /media
    devices: []
    cap_add: []
    environment: []
    network_mode: bridge
    privileged: false
x-casaos:
  author: self
  category: self
  hostname: ""
  icon: https://icon.casaos.io/main/all/copyparty.png
  index: /
  is_uncontrolled: false
  port_map: "3923"
  scheme: http
  store_app_id: copyparty
  title:
    custom: ""
    en_us: copyparty

create a config file in /DATA/AppData/copyparty/cfg/ called config.conf with the following contents (edit username/password to suit you)

[global]
    p: 3923   # Listen on port 3923
    e2dsa           # Enable EdDSA encryption for secure connections
    e2ts            # Enable TLS encryption
    z, qr           # Enable Zeroconf (LAN service discovery) and QR code login
    shr: /shr            # Shared folder path
    hist: /cfg/hists/    # History/log directory

[accounts]
  # Create a user named admin with password. Please change both!!!
  admin: password 

[/]
  /media                        # Expose /media as the root volume
  accs:
    rwda: admin       # Give user ‘copypartyadmin’ read/write/delete/admin permissions on this volume. This should match the account name on line 10.

Thanks so much for this!

1 Like