seknox / trasa

Zero Trust Service Access
https://www.trasa.io
Mozilla Public License 2.0
383 stars 68 forks source link

How to make the data persistent #273

Closed inventorematto closed 3 years ago

inventorematto commented 3 years ago

Hello everyone!!! I was looking for a project like this since a year! Than here you're. I would like to set up a semi-permanent solution for my remote access needs, and i use for all my project the docker compose v2 standard managed by portainer.

Here what i've done until now...

version: '2' services: db: container_name: db networks: trasa: environment:

My main goal is to have everithing (db, redis, config etc...) in "/mnt/DockerData/accessproxy/" path. Can someone help me with this???? Thanks in advance, inventorematto

bhrg3se commented 3 years ago

My guess is you want to make all the data persistent. If that's the case, you might want to add following volumes.

I've replaced "accessproxy" with "trasa" if that's all right.

inventorematto commented 3 years ago

Thanks dude!