You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	add syncthing
This commit is contained in:
		| @@ -451,6 +451,7 @@ A collection of delicious docker recipes. | ||||
|     - [x] jira | ||||
| - [x] strapi/strapi | ||||
| - [x] amancevice/superset | ||||
| - [x] syncthing/syncthing | ||||
| - [x] tensorflow | ||||
|     - [x] serving | ||||
| - [x] tile38/tile38 | ||||
|   | ||||
							
								
								
									
										7
									
								
								syncthing/README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								syncthing/README.md
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,7 @@ | ||||
| syncthing | ||||
| ========= | ||||
|  | ||||
| [Syncthing][1] is a continuous file synchronization program. | ||||
| It synchronizes files between two or more computers. | ||||
|  | ||||
| [1]: https://github.com/syncthing/syncthing | ||||
							
								
								
									
										16
									
								
								syncthing/docker-compose.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								syncthing/docker-compose.yml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,16 @@ | ||||
| version: "3.8" | ||||
| services: | ||||
|   syncthing: | ||||
|     image: syncthing/syncthing | ||||
|     ports: | ||||
|       - "8384:8384"       # Web UI | ||||
|       - "22000:22000/tcp" # TCP file transfers | ||||
|       - "22000:22000/udp" # QUIC file transfers | ||||
|       - "21027:21027/udp" # Receive local discovery broadcasts | ||||
|     volumes: | ||||
|       - ./data:/var/syncthing | ||||
|     environment: | ||||
|       - PUID=1000 | ||||
|       - PGID=1000 | ||||
|     hostname: syncthing | ||||
|     restart: unless-stopped | ||||
		Reference in New Issue
	
	Block a user