Skip to content

Commit aebf093

Browse files
authored
use ghcr image in addon development (#2544)
The docker hub images seem extremely outdated
1 parent 2e7cb67 commit aebf093

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/add-ons/testing.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ docker run \
4242

4343
If you don't want to use the official build tool, you can still build with standalone Docker. If you use `FROM $BUILD_FROM` you'll need to set a base image with build args. Normally you can use following base images:
4444

45-
- armhf: `homeassistant/armhf-base:latest`
46-
- aarch64: `homeassistant/aarch64-base:latest`
47-
- amd64: `homeassistant/amd64-base:latest`
48-
- i386: `homeassistant/i386-base:latest`
45+
- armhf: `ghcr.io/home-assistant/armhf-base:latest`
46+
- aarch64: `ghcr.io/home-assistant/aarch64-base:latest`
47+
- amd64: `ghcr.io/home-assistant/amd64-base:latest`
48+
- i386: `ghcr.io/home-assistant/i386-base:latest`
4949

5050
Use `docker` from the directory containing the add-on files to build the test addon:
5151

5252
```shell
5353
docker build \
54-
--build-arg BUILD_FROM="homeassistant/amd64-base:latest" \
54+
--build-arg BUILD_FROM="ghcr.io/home-assistant/amd64-base:latest" \
5555
-t local/my-test-addon \
5656
.
5757
```

0 commit comments

Comments
 (0)