Giter Club home page Giter Club logo

docker-syncthing's Issues

Allow to specify user name / UID and group name / GID when running container.

See --user / --group in docker run reference:

New environment variables:

  • SYNCTHING_USER / SYNCTHING_USER_UID
  • SYNCTHING_GROUP / SYNCTHING_GROUP_GID

Create a docker-entrypoint.sh which will use such environment variables to create the user and group dynamically at container runtime instead of during image build.

Unique volume name for all instances in systemd service definition !

The syncthing database volume was named syncthing_data for all instances which can cause big
troubles and instance overlap, etc...

Migration steps

In order to change the existing syncthing_data volume to new naming scheme, you need to backup existing syncthing database:

$ sudo systemctl stop docker-syncthing@<INSTANCE>
$ docker run -it --rm -v /tmp/syncthing_backup:/backup -v syncthing_data:/etc/syncthing nventiveux/docker-alpine-rpi tar zcvf /backup/syncthing_db.tar.gz /etc/syncthing

Backup will be available on host in /tmp/syncthing_backup/syncthing_db.tar.gz. Keep it safe.

Destroy the existing volume:

$ docker volume rm syncthing_data

Update systemd service file and start service again to recreate the volume with correct instance name.
Stop the service and restore the database:

$ docker run -it --rm -v /tmp/syncthing_backup:/backup -v syncthing_$USER_data:/etc/syncthing nventiveux/docker-alpine-rpi sh
sh# ( rm -rf /etc/syncthing/* && cd / && tar zxvf /backup/syncthing_db.tar.gz )

Start the service again.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.