Sign inSign up

bambucha/syncthing-inotify

By bambucha

Updated over 9 years ago

Syncthing Inotify Docker image based on Alpine Linux

Image
0

1.9K

bambucha/syncthing-inotify repository overview

Syncthing Inotify Docker Image

Version Layers Commit License Automated Build Docker Pulls

Syncthing Inotify Docker image based on Alpine Linux.

Docker Compose

SYNC_USER=1000
SYNC_GROUP=1000
SYNC_CONF=$(pwd)/config
SYNC_DATA=$(pwd)/data
sudo mkdir $SYNC_DATA $SYNC_CONF
sudo chown $SYNC_USER:$SYNC_GROUP $SYNC_DATA $SYNC_CONF
vi docker-compose.yml
version: "2"
services:
  syncthing:
    restart: always
    image: bambucha/syncthing
    user: 1000:1000
    volumes:
      - ./config:/syncthing
      - ./data:/mnt
    ports:
      - 8384:8384
      - 22000:22000
      - 21027:21027/udp
  inotify:
    restart: always
    image: bambucha/syncthing-inotify
    user: 1000:1000
    volumes:
      - ./config:/syncthing:ro
      - ./data:/mnt:ro
    links:
      - syncthing
docker-compose up -d

License

The MIT License

Tag summary

Content type

Image

Digest

Size

5 MB

Last updated

over 9 years ago

docker pull bambucha/syncthing-inotify