diff --git a/Container-Images.md b/Container-Images.md index 3e909a7..5dfb40f 100644 --- a/Container-Images.md +++ b/Container-Images.md @@ -5,12 +5,12 @@ to build your own image. ## Official Registry -[Official container images](https://code.fosterhangdaan.com/foster/-/packages/container/arch-packaging-container/versions) +[Official container images](https://code.hangdaan.com/foster/-/packages/container/arch-packaging-container/versions) are provided for use with container orchestration tools such as [Podman](https://podman.io/): ```sh -podman pull code.fosterhangdaan.com/foster/arch-packaging-container:latest +podman pull code.hangdaan.com/foster/arch-packaging-container:latest ``` ## Building the Image @@ -29,7 +29,7 @@ container management tool: [Podman](https://podman.io/docs/installation) or 1. Clone the repository: ```sh - git clone https://code.fosterhangdaan.com/foster/arch-packaging-container.git + git clone https://code.hangdaan.com/foster/arch-packaging-container.git ``` 1. Navigate to the directory: diff --git a/Home.md b/Home.md index 1b4635a..bcf6aab 100644 --- a/Home.md +++ b/Home.md @@ -1,7 +1,7 @@ # Arch Packaging Container Wiki This is the wiki for -[Arch Packaging Container](https://code.fosterhangdaan.com/foster/arch-packaging-container). +[Arch Packaging Container](https://code.hangdaan.com/foster/arch-packaging-container). ## About diff --git a/Usage.md b/Usage.md index 40b5357..f80865a 100644 --- a/Usage.md +++ b/Usage.md @@ -1,7 +1,7 @@ # Usage This document shows how to use -[Arch Packaging Container](https://code.fosterhangdaan.com/foster/arch-packaging-container) +[Arch Packaging Container](https://code.hangdaan.com/foster/arch-packaging-container) to build Arch Linux packages. ## Prerequisites @@ -25,7 +25,7 @@ to build Arch Linux packages. 1. Run the container: ```sh - podman run --rm -v ./pkg:/pkg:ro -v ./build:/build code.fosterhangdaan.com/foster/arch-packaging-container:latest + podman run --rm -v ./pkg:/pkg:ro -v ./build:/build code.hangdaan.com/foster/arch-packaging-container:latest ``` When the build is finished, the compressed package will be stored in @@ -44,5 +44,5 @@ Example for a [Rust](https://www.rust-lang.org/) build environment. 1. Run the container: ```sh - podman run --rm -v ./pkg:/pkg:ro -v ./build:/build -v cargo:/home/builder/.cargo code.fosterhangdaan.com/foster/arch-packaging-container:latest + podman run --rm -v ./pkg:/pkg:ro -v ./build:/build -v cargo:/home/builder/.cargo code.hangdaan.com/foster/arch-packaging-container:latest ```