mirror of
https://github.com/mentos1386/dotfiles.git
synced 2025-01-31 00:35:42 +00:00
fixes
This commit is contained in:
parent
faa3c73f69
commit
3cf7240161
4 changed files with 15 additions and 8 deletions
5
.github/workflows/fedora.yaml
vendored
5
.github/workflows/fedora.yaml
vendored
|
@ -19,9 +19,8 @@ jobs:
|
||||||
- name: Prepare
|
- name: Prepare
|
||||||
id: prepare
|
id: prepare
|
||||||
run: |
|
run: |
|
||||||
DOCKER_IMAGE=ghcr.io/mentos1386/env/fedora
|
DOCKER_IMAGE=ghcr.io/mentos1386/env-fedora
|
||||||
#DOCKER_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64
|
DOCKER_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64
|
||||||
DOCKER_PLATFORMS=linux/amd64,linux/arm64
|
|
||||||
VERSION=edge
|
VERSION=edge
|
||||||
|
|
||||||
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
||||||
|
|
5
.github/workflows/ubuntu.yaml
vendored
5
.github/workflows/ubuntu.yaml
vendored
|
@ -19,9 +19,8 @@ jobs:
|
||||||
- name: Prepare
|
- name: Prepare
|
||||||
id: prepare
|
id: prepare
|
||||||
run: |
|
run: |
|
||||||
DOCKER_IMAGE=ghcr.io/mentos1386/env/ubuntu
|
DOCKER_IMAGE=ghcr.io/mentos1386/env-ubuntu
|
||||||
#DOCKER_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64
|
DOCKER_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64
|
||||||
DOCKER_PLATFORMS=linux/amd64,linux/arm64
|
|
||||||
VERSION=edge
|
VERSION=edge
|
||||||
|
|
||||||
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
||||||
|
|
|
@ -6,8 +6,6 @@ LABEL maintainer="Tine <mentos1386> Jozelj <tine@tjo.space>"
|
||||||
ARG SSH_USER="${SSH_USER:-blink}"
|
ARG SSH_USER="${SSH_USER:-blink}"
|
||||||
ARG SSH_PASSWORD="${SSH_PASSWORD:-blink}"
|
ARG SSH_PASSWORD="${SSH_PASSWORD:-blink}"
|
||||||
|
|
||||||
RUN dnf -y update
|
|
||||||
|
|
||||||
SHELL ["/bin/bash", "-c"]
|
SHELL ["/bin/bash", "-c"]
|
||||||
|
|
||||||
RUN set -ueox pipefail \
|
RUN set -ueox pipefail \
|
||||||
|
|
11
README.md
11
README.md
|
@ -29,6 +29,17 @@ my workspace/environment as a docker container
|
||||||
- [ ] Fedora??
|
- [ ] Fedora??
|
||||||
- [ ] GUI using VNC?
|
- [ ] GUI using VNC?
|
||||||
|
|
||||||
|
# How to build
|
||||||
|
|
||||||
|
```
|
||||||
|
$ docker run -it --rm --privileged tonistiigi/binfmt --install all
|
||||||
|
|
||||||
|
# ...install buildx
|
||||||
|
|
||||||
|
# Build ubuntu for arm64
|
||||||
|
$ docker buildx build -f Dockerfile.ubuntu --platform linux/arm64 .
|
||||||
|
```
|
||||||
|
|
||||||
# Introduction
|
# Introduction
|
||||||
|
|
||||||
[blink shell](https://blink.sh) is an excellent minimalistic SSH and mosh client
|
[blink shell](https://blink.sh) is an excellent minimalistic SSH and mosh client
|
||||||
|
|
Loading…
Reference in a new issue