Skip to content

Commit 044bae1

Browse files
Bot Updating Templated Files
1 parent b274d7d commit 044bae1

File tree

5 files changed

+28
-6
lines changed

5 files changed

+28
-6
lines changed

Diff for: .editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ trim_trailing_whitespace = false
1515
indent_style = space
1616
indent_size = 2
1717

18-
[{**.sh,root/etc/cont-init.d/**,root/etc/services.d/**}]
18+
[{**.sh,root/etc/s6-overlay/s6-rc.d/**,root/etc/cont-init.d/**,root/etc/services.d/**}]
1919
indent_style = space
2020
indent_size = 4

Diff for: .github/workflows/call_invalid_helper.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Comment on invalid interaction
2+
on:
3+
issues:
4+
types:
5+
- labeled
6+
jobs:
7+
add-comment-on-invalid:
8+
if: github.event.label.name == 'invalid'
9+
permissions:
10+
issues: write
11+
uses: linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1
12+
secrets: inherit

Diff for: .github/workflows/greetings.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
steps:
99
- uses: actions/first-interaction@v1
1010
with:
11-
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-code-server/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-code-server/blob/master/.github/ISSUE_TEMPLATE/issue.feature.yml) issue templates!'
11+
issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.'
1212
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-code-server/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
1313
repo-token: ${{ secrets.GITHUB_TOKEN }}

Diff for: .github/workflows/permissions.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Permission check
2+
on:
3+
pull_request:
4+
paths:
5+
- '**/run'
6+
- '**/finish'
7+
jobs:
8+
permission_check:
9+
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1

Diff for: README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The architectures supported by this image are:
6262
| :----: | :----: | ---- |
6363
| x86-64 || amd64-\<version tag\> |
6464
| arm64 || arm64v8-\<version tag\> |
65-
| armhf|| arm32v7-\<version tag\> |
65+
| armhf || arm32v7-\<version tag\> |
6666

6767
## Application Setup
6868

@@ -95,7 +95,7 @@ services:
9595
environment:
9696
- PUID=1000
9797
- PGID=1000
98-
- TZ=Europe/London
98+
- TZ=Etc/UTC
9999
- PASSWORD=password #optional
100100
- HASHED_PASSWORD= #optional
101101
- SUDO_PASSWORD=password #optional
@@ -116,7 +116,7 @@ docker run -d \
116116
--name=code-server \
117117
-e PUID=1000 \
118118
-e PGID=1000 \
119-
-e TZ=Europe/London \
119+
-e TZ=Etc/UTC \
120120
-e PASSWORD=password `#optional` \
121121
-e HASHED_PASSWORD= `#optional` \
122122
-e SUDO_PASSWORD=password `#optional` \
@@ -127,6 +127,7 @@ docker run -d \
127127
-v /path/to/appdata/config:/config \
128128
--restart unless-stopped \
129129
lscr.io/linuxserver/code-server:latest
130+
130131
```
131132

132133
## Parameters
@@ -138,7 +139,7 @@ Container images are configured using parameters passed at runtime (such as thos
138139
| `-p 8443` | web gui |
139140
| `-e PUID=1000` | for UserID - see below for explanation |
140141
| `-e PGID=1000` | for GroupID - see below for explanation |
141-
| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London |
142+
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
142143
| `-e PASSWORD=password` | Optional web gui password, if `PASSWORD` or `HASHED_PASSWORD` is not provided, there will be no auth. |
143144
| `-e HASHED_PASSWORD=` | Optional web gui password, overrides `PASSWORD`, instructions on how to create it is below. |
144145
| `-e SUDO_PASSWORD=password` | If this optional variable is set, user will have sudo access in the code-server terminal with the specified password. |

0 commit comments

Comments
 (0)