Add picoshare/docker-compose.yml

This commit is contained in:
2025-11-01 18:10:03 +00:00
parent e3b9bb23e2
commit c8072382de
+23
View File
@@ -0,0 +1,23 @@
version: "3.2"
services:
picoshare:
container_name: picoshare
image: mtlynch/picoshare
environment:
- PORT=4001
- PS_SHARED_SECRET=${SHARED_SECRET} # Change to any password
- PS_BEHIND_PROXY=true
ports:
- 4001:4001
networks:
- npm-network
command: -db /data/store.db
volumes:
- /srv/picoshare-data:/data
networks:
default:
npm-network:
external: true