This repository has been archived by the owner on Jun 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
readme-vars.yml
59 lines (52 loc) · 2.64 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
---
# project information
project_name: shout-irc
project_url: "http://shout-irc.com/"
project_logo: "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png"
project_blurb: "THIS IMAGE IS DEPRECATED. PLEASE MIGRATE TO THELOUNGE `linuxserver/thelounge` [{{ project_name|capitalize }}]({{ project_url }}) is a web IRC client that you host on your own server."
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_net: false #you can set it to 'optional'
param_net: "host"
param_net_desc: "Shares host networking with container."
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." }
param_usage_include_ports: true
param_ports:
- { external_port: "9000", internal_port: "9000", port_desc: "Application WebUI" }
# application setup block
app_setup_block_enabled: true
app_setup_block: "
* To log in to the application, browse to https://<hostip>:9000.
* To setup user account(s) edit `/config/config.json`
* Change the value `public: true,` to `public: false,`
* restart the container and enter the following from the command line of the host:
* `docker exec -it thelounge thelounge add <user>`
* Enter a password when prompted, refresh your browser.
* You should now be prompted for a password on the webinterface.
"
app_setup_nginx_reverse_proxy_snippet: false
app_setup_nginx_reverse_proxy_block: ""
# changelog
changelogs:
- { date: "11.06.19:", desc: "DEPRECATE IMAGE, USE THELOUNGE." }
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
- { date: "22.02.19:", desc: "Rebasing to alpine 3.9." }
- { date: "28.01.19:", desc: "Add pipeline logic and multi arch." }
- { date: "25.08.18:", desc: "Rebase to alpine 3.8." }
- { date: "13.12.17:", desc: "Rebase to alpine 3.7." }
- { date: "27.05.17:", desc: "Rebase to alpine 3.6." }
- { date: "09.02.17:", desc: "Rebase to alpine 3.5." }
- { date: "14.10.16:", desc: "Add version layer information." }
- { date: "31.08.16:", desc: "Rebase to alpine linux, move to lsiocommunity" }