From 5020bdd0e23e858c9944b9f12fc9158188d02d5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20PORTAY?= Date: Fri, 13 Jun 2025 14:02:20 +0200 Subject: [PATCH 1/2] Really fix a path name in doc See eced61d6c3f86a08e80805e76e165192bd8b9c00. --- docker/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/README.md b/docker/README.md index 0d32da34..fa5ce6b4 100644 --- a/docker/README.md +++ b/docker/README.md @@ -55,7 +55,7 @@ All the dockerfiles are available in this directory and can be built directly fr Example to build a custom sink service tagged local/my_sink_service:tag1 in your PC: ```bash -docker build -f docker/sink-service/Dockerfile -t local/my_sink_service:tag1 +docker build -f docker/sink_service/Dockerfile -t local/my_sink_service:tag1 ``` You can then use this image in the docker-compose template instead of the Wirepas Docker Hub ones. From c8b6aa998137a983485794ec9c52da9488a4d144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20PORTAY?= Date: Fri, 13 Jun 2025 14:05:34 +0200 Subject: [PATCH 2/2] Fix missing positional argument in docker build Fixes: $ docker build -f docker/sink_service/Dockerfile -t local/my_sink_service:tag1 ERROR: docker: 'docker buildx build' requires 1 argument Usage: docker buildx build [OPTIONS] PATH | URL | - Run 'docker buildx build --help' for more information --- docker/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/README.md b/docker/README.md index fa5ce6b4..648df62c 100644 --- a/docker/README.md +++ b/docker/README.md @@ -55,7 +55,7 @@ All the dockerfiles are available in this directory and can be built directly fr Example to build a custom sink service tagged local/my_sink_service:tag1 in your PC: ```bash -docker build -f docker/sink_service/Dockerfile -t local/my_sink_service:tag1 +docker build -f docker/sink_service/Dockerfile -t local/my_sink_service:tag1 . ``` You can then use this image in the docker-compose template instead of the Wirepas Docker Hub ones.