I recently needed to share a password. I didn’t want to send it by email (for obvious reasons) so I was looking for a quick and secure solution. I found Yopass, which can be self-hosted, so I installed it on my Synology NAS.
I followed the “How-to” on Marius Hosting (as I do very often). I just had to tweak the text for the Portainer Stack Web Editor slightly (IP address 127.0.0.1 instead of the specific NAS’s IP address) in order to make it work. The text I used is the following:
version: "3.0"
services:
memcached:
image: memcached
container_name: YoPass-Memcached
restart: always
expose:
- 11211
yopass:
image: jhaals/yopass
container_name: YoPass
restart: always
ports:
- 127.0.0.1:5110:80
command: --memcached=memcached:11211 --port 80
And now I have Yopass running on my NAS! Feel free to use it here!
