Skip to content

Commit

Permalink
Set nextail as Docker repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensa committed Jun 29, 2023
1 parent c4ef981 commit 7b98fa1
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ on:
jobs:
# This workflow call reusable workflow docker-build
build:
uses: rubensa/docker-ubuntu-tini/.github/workflows/docker-build.yml@master
uses: nextail/docker-ubuntu-tini/.github/workflows/docker-build.yml@master
with:
DOCKER_REPOSITORY_NAME: rubensa
DOCKER_REPOSITORY_NAME: nextail
DOCKER_IMAGE_NAME: ubuntu-tini-user
DOCKER_IMAGE_TAG: 20.04
secrets: inherit
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rubensa/ubuntu-tini:20.04
FROM nextail/ubuntu-tini:20.04
LABEL author="Ruben Suarez <rubensa@gmail.com>"

# Architecture component of TARGETPLATFORM (platform of the build result)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Docker image based on rubensa/ubuntu-tini 20.04 with non root user support
# Docker image based on nextail/ubuntu-tini 20.04 with non root user support

This is a Docker image based on [rubensa/ubuntu-tini](https://github.com/rubensa/docker-ubuntu-tini) that allows you to connect and run with a non-root user created inside the image.
This is a Docker image based on [nextail/ubuntu-tini](https://github.com/nextail/docker-ubuntu-tini) that allows you to connect and run with a non-root user created inside the image.

The internal user (user) has sudo and the image includes [fixuid](https://github.com/boxboat/fixuid) so you can set internal user (user) UID and internal group (group) GID to your current UID and GID by providing that info means of "--user" docker running option.

Expand All @@ -11,7 +11,7 @@ You can build the image like this:
```
#!/usr/bin/env bash
DOCKER_REPOSITORY_NAME="rubensa"
DOCKER_REPOSITORY_NAME="nextail"
DOCKER_IMAGE_NAME="ubuntu-tini-user"
DOCKER_IMAGE_TAG="20.04"
Expand All @@ -30,7 +30,7 @@ You can also add build image args to change default non-root user (user:1000) an
```
#!/usr/bin/env bash
DOCKER_REPOSITORY_NAME="rubensa"
DOCKER_REPOSITORY_NAME="nextail"
DOCKER_IMAGE_NAME="ubuntu-tini-user"
DOCKER_IMAGE_TAG="20.04"
Expand Down Expand Up @@ -74,7 +74,7 @@ You can run the container like this (change --rm with -d if you don't want the c
```
#!/usr/bin/env bash
DOCKER_REPOSITORY_NAME="rubensa"
DOCKER_REPOSITORY_NAME="nextail"
DOCKER_IMAGE_NAME="ubuntu-tini-user"
DOCKER_IMAGE_TAG="20.04"
Expand Down
2 changes: 1 addition & 1 deletion build-custom.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

DOCKER_REPOSITORY_NAME="rubensa"
DOCKER_REPOSITORY_NAME="nextail"
DOCKER_IMAGE_NAME="ubuntu-tini-user"
DOCKER_IMAGE_TAG="20.04"

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

DOCKER_REPOSITORY_NAME="rubensa"
DOCKER_REPOSITORY_NAME="nextail"
DOCKER_IMAGE_NAME="ubuntu-tini-user"
DOCKER_IMAGE_TAG="20.04"

Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

DOCKER_REPOSITORY_NAME="rubensa"
DOCKER_REPOSITORY_NAME="nextail"
DOCKER_IMAGE_NAME="ubuntu-tini-user"
DOCKER_IMAGE_TAG="20.04"

Expand Down

0 comments on commit 7b98fa1

Please sign in to comment.