You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/greetings.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,6 @@ jobs:
8
8
steps:
9
9
- uses: actions/first-interaction@v1
10
10
with:
11
-
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-openvscode-server/blob/main/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-openvscode-server/blob/main/.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.'
12
12
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-openvscode-server/blob/main/.github/PULL_REQUEST_TEMPLATE.md)!'
Copy file name to clipboardExpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ The architectures supported by this image are:
56
56
| :----: | :----: | ---- |
57
57
| x86-64 | ✅ | amd64-\<version tag\>|
58
58
| arm64 | ✅ | arm64v8-\<version tag\>|
59
-
| armhf| ✅ | arm32v7-\<version tag\>|
59
+
| armhf| ✅ | arm32v7-\<version tag\>|
60
60
61
61
## Version Tags
62
62
@@ -66,7 +66,6 @@ This image provides various versions that are available via tags. Please read th
66
66
| :----: | :----: |--- |
67
67
| latest | ✅ | Stable releases |
68
68
| insiders | ✅ | Insiders releases |
69
-
70
69
## Application Setup
71
70
72
71
If `CONNECTION_TOKEN` or `CONNECTION_SECRET` env vars are set, you can access the webui at `http://<your-ip>:3000/?tkn=supersecrettoken` (replace `supersecrettoken` with the value set). If not, you can access the webui at `http://<your-ip>:3000`.
@@ -97,7 +96,7 @@ services:
97
96
environment:
98
97
- PUID=1000
99
98
- PGID=1000
100
-
- TZ=Europe/London
99
+
- TZ=Etc/UTC
101
100
- CONNECTION_TOKEN= #optional
102
101
- CONNECTION_SECRET= #optional
103
102
- SUDO_PASSWORD=password #optional
@@ -116,7 +115,7 @@ docker run -d \
116
115
--name=openvscode-server \
117
116
-e PUID=1000 \
118
117
-e PGID=1000 \
119
-
-e TZ=Europe/London \
118
+
-e TZ=Etc/UTC \
120
119
-e CONNECTION_TOKEN= `#optional` \
121
120
-e CONNECTION_SECRET= `#optional` \
122
121
-e SUDO_PASSWORD=password `#optional` \
@@ -125,6 +124,7 @@ docker run -d \
125
124
-v /path/to/appdata/config:/config \
126
125
--restart unless-stopped \
127
126
lscr.io/linuxserver/openvscode-server:latest
127
+
128
128
```
129
129
130
130
## Parameters
@@ -136,7 +136,7 @@ Container images are configured using parameters passed at runtime (such as thos
136
136
|`-p 3000`| Web UI port. |
137
137
|`-e PUID=1000`| for UserID - see below for explanation |
138
138
|`-e PGID=1000`| for GroupID - see below for explanation |
139
-
|`-e TZ=Europe/London`|Specify a timezone to use. |
139
+
|`-e TZ=Etc/UTC`|specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
140
140
|`-e CONNECTION_TOKEN=`| Optional security token for accessing the Web UI (ie. `supersecrettoken`). |
141
141
|`-e CONNECTION_SECRET=`| Optional path to a file inside the container that contains the security token for accessing the Web UI (ie. `/path/to/file`). Overrides `CONNECTION_TOKEN`. |
142
142
|`-e SUDO_PASSWORD=password`| If this optional variable is set, user will have sudo access in the openvscode-server terminal with the specified password. |
0 commit comments