generated from Templates/Baseline
Compare commits
4 Commits
52e7ff2d37
...
v0.2.0
Author | SHA1 | Date | |
---|---|---|---|
903478f746 | |||
7a1b293188 | |||
88d228ad07 | |||
40684f5a3b |
12
CHANGELOG.md
12
CHANGELOG.md
@ -35,7 +35,7 @@
|
|||||||
* Add woodpecker manager in renovate-bot (#14)
|
* Add woodpecker manager in renovate-bot (#14)
|
||||||
* fixes logo file path (#8)
|
* fixes logo file path (#8)
|
||||||
* Adds basic container setup with pipeline (#1)
|
* Adds basic container setup with pipeline (#1)
|
||||||
|
|
||||||
## [v0.1.1](https://gitea.ocram85.com/CodeServer/arkanum/releases/tag/v0.1.1) - 2023-01-02
|
## [v0.1.1](https://gitea.ocram85.com/CodeServer/arkanum/releases/tag/v0.1.1) - 2023-01-02
|
||||||
|
|
||||||
* 📦 BUILD
|
* 📦 BUILD
|
||||||
@ -45,3 +45,13 @@
|
|||||||
* fix renovate config keys (#34)
|
* fix renovate config keys (#34)
|
||||||
* Update renovate/renovate Docker tag to v34.62 (#33)
|
* Update renovate/renovate Docker tag to v34.62 (#33)
|
||||||
* Update renovate/renovate Docker tag to v34.57 (#32)
|
* Update renovate/renovate Docker tag to v34.57 (#32)
|
||||||
|
|
||||||
|
## [v0.2.0](https://gitea.ocram85.com/CodeServer/arkanum/releases/tag/v0.2.0) - 2023-01-04
|
||||||
|
|
||||||
|
* 🐛 BUGFIXES
|
||||||
|
* fix typo (#39)
|
||||||
|
* 🛠️ ENHANCEMENTS
|
||||||
|
* Add proxy support (#38)
|
||||||
|
* 🤖 DEPENDENCIES
|
||||||
|
* Update renovate/renovate Docker tag to v34.82 (#37)
|
||||||
|
* Update quay.io/linuxserver.io/code-server Docker tag to v4.9.1 (#31)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM quay.io/linuxserver.io/code-server:4.8.3
|
FROM quay.io/linuxserver.io/code-server:4.9.1
|
||||||
|
|
||||||
#LABEL build_version=""
|
#LABEL build_version=""
|
||||||
LABEL maintainer="OCram85"
|
LABEL maintainer="OCram85"
|
||||||
|
@ -34,7 +34,9 @@ You can download the image from the gitea embedded container registry: `gitea.oc
|
|||||||
|
|
||||||
- `latest` - Is based on the lasted master branch commit.
|
- `latest` - Is based on the lasted master branch commit.
|
||||||
- `next` - Is a test build based on the pull request
|
- `next` - Is a test build based on the pull request
|
||||||
- `1`, `0.1`, `0.1.0` - tag based version. See [packages page](https://gitea.ocram85.com/CodeServer/-/packages/container/arkanum/latest) for available tags.
|
- `1`, `0.1`, `0.1.0` - tag based version.
|
||||||
|
|
||||||
|
> **💡 NOTE: See the [packages page](https://gitea.ocram85.com/CodeServer/-/packages/container/arkanum/latest) for latest version and all other available tags.**
|
||||||
|
|
||||||
### 2.a Run as Docker Swarm Stack
|
### 2.a Run as Docker Swarm Stack
|
||||||
|
|
||||||
@ -53,7 +55,7 @@ Therefore you need
|
|||||||
version: "3.8"
|
version: "3.8"
|
||||||
services:
|
services:
|
||||||
arkanum:
|
arkanum:
|
||||||
image: gitea.ocram85.com/codeserver/arkanum:0.0.1
|
image: gitea.ocram85.com/codeserver/arkanum:0.2.0
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
@ -104,7 +106,7 @@ See their [docs](https://github.com/linuxserver/docker-code-server#parameters) a
|
|||||||
version: "3.8"
|
version: "3.8"
|
||||||
services:
|
services:
|
||||||
arkanum:
|
arkanum:
|
||||||
image: gitea.ocram85.com/codeserver/arkanum:0.0.1
|
image: gitea.ocram85.com/codeserver/arkanum:0.2.0
|
||||||
container_name: code-server
|
container_name: code-server
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
|
2
arkanum
2
arkanum
@ -147,7 +147,7 @@ function instCodeExtension() {
|
|||||||
rm -f /tmp/eamodio.gitlens-13.1.1.vsix
|
rm -f /tmp/eamodio.gitlens-13.1.1.vsix
|
||||||
|
|
||||||
# OneDarkPro
|
# OneDarkPro
|
||||||
say "Downloading 'One Dark Pro' theme..." "V"
|
say "Downloading 'One Dark Pro' theme..." "Extension"
|
||||||
curl -fsSL https://open-vsx.org/api/zhuangtongfa/material-theme/3.15.6/file/zhuangtongfa.material-theme-3.15.6.vsix -o /tmp/zhuangtongfa.material-theme-3.15.6.vsix
|
curl -fsSL https://open-vsx.org/api/zhuangtongfa/material-theme/3.15.6/file/zhuangtongfa.material-theme-3.15.6.vsix -o /tmp/zhuangtongfa.material-theme-3.15.6.vsix
|
||||||
say "Installing 'One Dark Pro' theme..." "Extension"
|
say "Installing 'One Dark Pro' theme..." "Extension"
|
||||||
install-extension /tmp/zhuangtongfa.material-theme-3.15.6.vsix
|
install-extension /tmp/zhuangtongfa.material-theme-3.15.6.vsix
|
||||||
|
Reference in New Issue
Block a user