Compare commits
5 Commits
v0.2.1
...
8b84499b36
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8b84499b36 | ||
|
|
7c73222b5f | ||
|
|
78cb8b312f | ||
|
|
27ee0b81c3 | ||
|
|
1d1f63a451 |
@@ -15,12 +15,6 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v3
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
|
|
||||||
- name: Log in to Gitea Container Registry
|
- name: Log in to Gitea Container Registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
@@ -38,7 +32,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
context: ./tools
|
context: ./tools
|
||||||
push: true
|
push: true
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64
|
||||||
tags: |
|
tags: |
|
||||||
gitea.setlock.net/shaun/dev-container:latest
|
gitea.setlock.net/shaun/dev-container:latest
|
||||||
gitea.setlock.net/shaun/dev-container:${{ env.GIT_TAG }}
|
gitea.setlock.net/shaun/dev-container:${{ env.GIT_TAG }}
|
||||||
|
|||||||
@@ -14,12 +14,6 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v3
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
|
|
||||||
- name: Log in to Gitea Container Registry
|
- name: Log in to Gitea Container Registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
@@ -32,6 +26,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
context: ./tools
|
context: ./tools
|
||||||
push: true
|
push: true
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64
|
||||||
tags: |
|
tags: |
|
||||||
gitea.setlock.net/shaun/dev-container:nightly
|
gitea.setlock.net/shaun/dev-container:nightly
|
||||||
|
|||||||
5
fish/functions/dev.fish
Normal file
5
fish/functions/dev.fish
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Defined in - @ line 1
|
||||||
|
function dev --wraps='docker exec -it mydev fish' --description 'alias dev=docker exec -it mydev fish'
|
||||||
|
docker exec -it mydev fish
|
||||||
|
|
||||||
|
end
|
||||||
5
fish/functions/oo.fish
Normal file
5
fish/functions/oo.fish
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Defined in - @ line 1
|
||||||
|
function oo --wraps='nvim ~/Obsidian' --description 'alias oo=nvim ~/Obsidian'
|
||||||
|
nvim ~/Obsidian
|
||||||
|
|
||||||
|
end
|
||||||
5
fish/functions/v.fish
Normal file
5
fish/functions/v.fish
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Defined in - @ line 1
|
||||||
|
function v --wraps='nvim .' --description 'alias v=nvim .'
|
||||||
|
nvim .
|
||||||
|
|
||||||
|
end
|
||||||
5
fish/functions/vh.fish
Normal file
5
fish/functions/vh.fish
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Defined in - @ line 1
|
||||||
|
function vh --wraps='nvim ~/' --description 'alias vh=nvim ~/'
|
||||||
|
nvim ~/
|
||||||
|
|
||||||
|
end
|
||||||
@@ -68,7 +68,7 @@ RUN chown -R shaun:shaun /workspace
|
|||||||
|
|
||||||
# Switch to non-root user
|
# Switch to non-root user
|
||||||
USER shaun
|
USER shaun
|
||||||
WORKDIR /home/shaun
|
WORKDIR /workspace
|
||||||
|
|
||||||
# Avoid container exit.
|
# Avoid container exit.
|
||||||
CMD ["tail", "-f", "/dev/null"]
|
CMD ["tail", "-f", "/dev/null"]
|
||||||
|
|||||||
Reference in New Issue
Block a user