forked from linuxserver/docker-syncthing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme-vars.yml
executable file
·68 lines (62 loc) · 3.9 KB
/
readme-vars.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
# project information
project_name: syncthing
project_url: "https://syncthing.net"
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/syncthing-banner.png"
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet."
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
# supported architectures
available_architectures:
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
# container parameters
common_param_env_vars_enabled: true #PGID, PUID, etc, you can set it to 'optional'
param_container_name: "{{ project_name }}"
param_usage_include_hostname: 'optional' #you can set it to 'optional'
param_hostname: "{{ project_name }}"
param_hostname_desc: "Optionally the hostname can be defined."
param_usage_include_env: true
param_env_vars:
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
param_usage_include_vols: true
param_volumes:
- { vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Configuration files." }
- { vol_path: "/data1", vol_host_path: "/path/to/data1", desc: "Data1" }
- { vol_path: "/data2", vol_host_path: "/path/to/data2", desc: "Data2" }
param_usage_include_ports: true
param_ports:
- { external_port: "8384", internal_port: "8384", port_desc: "Application WebUI" }
- { external_port: "22000", internal_port: "22000", port_desc: "Listening port" }
- { external_port: "21027", internal_port: "21027/udp", port_desc: "Protocol discovery" }
# application setup block
app_setup_block_enabled: true
app_setup_block: "**Note: ** The Syncthing devs highly suggest setting a password for this container as it listens on 0.0.0.0. To do this go to `Actions -> Settings -> set user/password` for the webUI."
app_setup_nginx_reverse_proxy_snippet: false
app_setup_nginx_reverse_proxy_block: ""
# changelog
changelogs:
- { date: "29.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." }
- { date: "23.01.21:", desc: "Rebasing to alpine 3.13." }
- { date: "15.09.20:", desc: "Use go from alpine edge repo to compile. Remove duplicate UMASK env var. Add hostname setting." }
- { date: "01.06.20:", desc: "Rebasing to alpine 3.12." }
- { date: "19.12.19:", desc: "Rebasing to alpine 3.11." }
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
- { date: "05.03.19:", desc: "Update Build process for v1.1.0 release." }
- { date: "22.02.19:", desc: "Rebasing to alpine 3.9." }
- { date: "16.01.19:", desc: "Add pipeline logic and multi arch." }
- { date: "30.07.18:", desc: "Rebase to alpine 3.8 and use buildstage." }
- { date: "13.12.17:", desc: "Rebase to alpine 3.7." }
- { date: "25.10.17:", desc: "Add env for manual setting of umask." }
- { date: "29.07.17:", desc: "Simplify build structure as symlinks failing on > 0.14.32" }
- { date: "28.05.17:", desc: "Rebase to alpine 3.6." }
- { date: "08.02.17:", desc: "Rebase to alpine 3.5." }
- { date: "01.11.16:", desc: "Switch to compiling latest version from git source." }
- { date: "14.10.16:", desc: "Add version layer information." }
- { date: "30.09.16:", desc: "Fix umask." }
- { date: "09.09.16:", desc: "Add layer badges to README." }
- { date: "28.08.16:", desc: "Add badges to README." }
- { date: "11.08.16:", desc: "Rebase to alpine linux." }
- { date: "18.12.15:", desc: "Initial testing / release (IronicBadger)" }
- { date: "24.09.15:", desc: "Inital dev complete (Lonix)" }