Install Picoshare in a Proxmox Container With Dockge
Use Case
- Its all about collaboration, Teams, Clubs, Organizations, Home Use
- You want to leave a file on a server and send a link to it for somone to download
- The file can have an expiry date for self delete
Create the Modified Docker compose file
Run this command :
nano compose.yaml
Put this in the file :
version: "3.3"
services:
picoshare:
environment:
- PORT=4001
- PS_SHARED_SECRET=${PASSWORD}
ports:
- 4001:4001/tcp
volumes:
- .data:/data
container_name: Picoshare
image: mtlynch/picoshare:latest
networks: {}
Run this command :
nano .env
Put this in the file :
PASSWORD=Password123