Skip to content

Commit 5bdd65f

Browse files
author
Alexandr Smirnov
committed
Remove linux/aarch64
Fix maintainer, README.md
1 parent c777844 commit 5bdd65f

4 files changed

Lines changed: 14 additions & 13 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN set -eux \
4242
FROM alpine:3.19 AS rootfs
4343

4444
COPY --from=nginx-unit-builder ["/opt/unit/", "/opt/unit/"]
45-
COPY --from=ghcr.io/n0rthernl1ghts/s6-rootfs:3.1.6.2 ["/", "/rootfs-build"]
45+
COPY --from=ghcr.io/kohanaxworld/s6-rootfs:3.1.6.2 ["/", "/rootfs-build"]
4646

4747
# Rootfs
4848
COPY ["./rootfs", "/rootfs-build"]
@@ -79,8 +79,8 @@ ENV S6_SERVICES_GRACETIME=6000
7979
ENV S6_VERBOSITY=5
8080
ENV S6_CMD_RECEIVE_SIGNALS=1
8181

82-
LABEL maintainer="Aleksandar Puharic <aleksandar@puharic.com>" \
83-
org.opencontainers.image.source="https://github.com/N0rthernL1ghts/unit-php" \
82+
LABEL maintainer="Kohana World Team <ga@koseven.ga>" \
83+
org.opencontainers.image.source="https://github.com/kohanaxworld/unit-php" \
8484
org.opencontainers.image.description="NGINX Unit ${UNIT_VERSION} - Alpine Build ${TARGETPLATFORM}" \
8585
org.opencontainers.image.licenses="MIT" \
8686
org.opencontainers.image.version="${UNIT_VERSION}"

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
MIT License
22

3+
Copyright (c) 2024 Kohana World TeaM
34
Copyright (c) 2022 Northern Lights Software (N0rthern L1ghts)
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ Alpine based Docker image for nginx-unit with PHP module
33

44
Ready-to-use images:
55
```shell
6-
ghcr.io/n0rthernl1ghts/unit-php
6+
ghcr.io/kohanaxworld/unit-php
77
```
88

99
Supported PHP versions:
1010
- PHP7.4
1111
- PHP8.1
1212
- PHP8.2
1313

14-
Check the [package](https://github.com/N0rthernL1ghts/unit-php/pkgs/container/unit-php) for available tags.
14+
Check the [package](https://github.com/kohanaxworld/unit-php/pkgs/container/unit-php) for available tags.
1515

1616
Currently under active maintenance, so to be considered as unstable.
1717

@@ -23,23 +23,23 @@ On container startup, unit is launched and then config.json is sent to the servi
2323
```shell
2424
docker run -it \
2525
-v "/path/to/your/laravel_app:/app" \
26-
ghcr.io/n0rthernl1ghts/unit-php
26+
ghcr.io/kohanaxworld/unit-php
2727
```
2828

2929
And here's how to run with your own config:
3030
```shell
3131
docker run -it \
3232
-v "/path/to/your/unit_config.json:/etc/unit/config.json" \
3333
-v "/path/to/your/web_app:/app" \
34-
ghcr.io/n0rthernl1ghts/unit-php
34+
ghcr.io/kohanaxworld/unit-php
3535
```
3636

3737
You can also override path to unit configuration file with `UNIT_CONFIGURATION_FILE` environment variable:
3838
```shell
3939
docker run -it \
4040
-e "UNIT_CONFIGURATION_FILE=/app/config/unit.json" \
4141
-v "/path/to/your/web_app:/app" \
42-
ghcr.io/n0rthernl1ghts/unit-php
42+
ghcr.io/kohanaxworld/unit-php
4343
```
4444

4545
###### Extending the image
@@ -55,7 +55,7 @@ COPY ["./unit.json", "/etc/unit/config.json"]
5555

5656

5757
# Main stage
58-
FROM ghcr.io/n0rthernl1ghts/unit-php
58+
FROM ghcr.io/kohanaxworld/unit-php
5959

6060
# Copy prepared root filesystem (single layer)
6161
COPY --from=rootfs ["/", "/"]
@@ -75,7 +75,7 @@ RUN set -eux \
7575

7676

7777
#### Supervisor
78-
This image comes bundled with [just-containers/s6-overlay](https://github.com/just-containers/s6-overlay) from build [ghcr.io/n0rthernl1ghts/s6-rootfs](https://github.com/N0rthernL1ghts/s6-rootfs).
78+
This image comes bundled with [just-containers/s6-overlay](https://github.com/just-containers/s6-overlay) from build [ghcr.io/kohanaxworld/s6-rootfs](https://github.com/kohanaxworld/s6-rootfs).
7979
To control supervisor behavior, you can use [it's environment variables](https://github.com/just-containers/s6-overlay#customizing-s6-behaviour).
8080
<br></br>
8181

build/docker-bake.hcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ target "build-dockerfile" {
2525
}
2626

2727
target "build-platforms" {
28-
platforms = ["linux/amd64", "linux/aarch64"]
28+
platforms = ["linux/amd64"]
2929
}
3030

3131
target "build-common" {
@@ -74,12 +74,12 @@ function "get-tags" {
7474
result = concat(
7575
[
7676
"docker.io/nlss/unit-php:${version}",
77-
"ghcr.io/n0rthernl1ghts/unit-php:${version}"
77+
"ghcr.io/kohanaxworld/unit-php:${version}"
7878
],
7979
flatten([
8080
for extra_version in extra_versions : [
8181
"docker.io/nlss/unit-php:${extra_version}",
82-
"ghcr.io/n0rthernl1ghts/unit-php:${extra_version}"
82+
"ghcr.io/kohanaxworld/unit-php:${extra_version}"
8383
]
8484
])
8585
)

0 commit comments

Comments
 (0)