Skip to content

Commit

Permalink
💚 ci(docker): fix docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
pouya-eghbali committed Apr 24, 2024
1 parent f6a9307 commit 6e5d916
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ jobs:
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: |
ghcr.io/kenshitech/unchained:${{ steps.docker-tag.outputs.docker-tag }}
ghcr.io/kenshitech/unchained:${{ github.ref_name }}
ghcr.io/timeleaplabs/unchained:${{ steps.docker-tag.outputs.docker-tag }}
ghcr.io/timeleaplabs/unchained:${{ github.ref_name }}
build-args: |
"UBUNTU_VERSION=${{ env.UBUNTU_VERSION }}"
"UNCHAINED_VERSION=${{ github.ref_name }}"
6 changes: 3 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

# Kenshi Unchained

[![Release](https://shields.io/github/v/release/kenshitech/unchained)](https://github.com/TimeleapLabs/unchained/releases)
[![Release](https://shields.io/github/v/release/timeleaplabs/unchained)](https://github.com/TimeleapLabs/unchained/releases)
[![CLA assistant](https://cla-assistant.io/readme/badge/TimeleapLabs/unchained)](https://cla-assistant.io/TimeleapLabs/unchained)
[![Image tags](https://ghcrbadge-1-y2886489.deta.app/kenshitech/unchained/tags?color=%2344cc11&ignore=latest&n=1&label=image+tags&trim=)](https://github.com/TimeleapLabs/unchained/pkgs/container/unchained)
[![Image size](https://ghcrbadge-1-y2886489.deta.app/kenshitech/unchained/size?color=%2344cc11&tag=latest&label=image+size&trim=)](https://github.com/TimeleapLabs/unchained/pkgs/container/unchained)
[![Image tags](https://ghcrbadge-1-y2886489.deta.app/timeleaplabs/unchained/tags?color=%2344cc11&ignore=latest&n=1&label=image+tags&trim=)](https://github.com/TimeleapLabs/unchained/pkgs/container/unchained)
[![Image size](https://ghcrbadge-1-y2886489.deta.app/timeleaplabs/unchained/size?color=%2344cc11&tag=latest&label=image+size&trim=)](https://github.com/TimeleapLabs/unchained/pkgs/container/unchained)
[![Open Collective backers and sponsors](https://img.shields.io/opencollective/all/unchained)](https://opencollective.com/unchained)
[![Documentation](https://img.shields.io/badge/Documentation-brightgreen)](https://kenshi.io/docs/unchained)

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

docker buildx build --build-arg="UBUNTU_VERSION=latest" --build-arg="UNCHAINED_VERSION=v0.11.0" -t ghcr.io/kenshitech/unchained:latest --no-cache .
docker buildx build --build-arg="UBUNTU_VERSION=latest" --build-arg="UNCHAINED_VERSION=v0.11.0" -t ghcr.io/timeleaplabs/unchained:latest --no-cache .
8 changes: 4 additions & 4 deletions docker/compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
#unchained_broker:
# image: ghcr.io/kenshitech/unchained:latest
# image: ghcr.io/timeleaplabs/unchained:latest
# container_name: unchained_broker
# hostname: unchained_broker
# volumes:
Expand All @@ -14,7 +14,7 @@ services:
# restart: always

unchained_standalone:
image: ghcr.io/kenshitech/unchained:latest
image: ghcr.io/timeleaplabs/unchained:latest
container_name: unchained_standalone
hostname: unchained_standalone
volumes:
Expand Down Expand Up @@ -64,7 +64,7 @@ services:
# condition: service_healthy

unchained_worker:
image: ghcr.io/kenshitech/unchained:latest
image: ghcr.io/timeleaplabs/unchained:latest
container_name: unchained_worker
hostname: unchained_worker
volumes:
Expand All @@ -77,7 +77,7 @@ services:
restart: always

#unchained_remote:
# image: ghcr.io/kenshitech/unchained:latest
# image: ghcr.io/timeleaplabs/unchained:latest
# container_name: unchained_remote
# hostname: unchained_remote
# volumes:
Expand Down
2 changes: 1 addition & 1 deletion k8s/charts/unchained-worker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ podManagementPolicy: "Parallel"
#podManagementPolicy: "OrderedReady"

image:
repository: ghcr.io/kenshitech/unchained
repository: ghcr.io/timeleaplabs/unchained
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: "latest"
Expand Down

0 comments on commit 6e5d916

Please sign in to comment.