Tymoteusz Blazejczyk

Results 41 comments of Tymoteusz Blazejczyk

I have prepared Pull Request with necessary fixes for this issue https://github.com/ThreeDotsLabs/watermill-http/pull/10 I don't know why CI fails for `go build ./...`. Locally it works perfectly fine without any problems.

I have the same issue here. As temporary workaround I use `format: base64` with additional `pattern: '^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$'`.

There is a working solution using virtual ethernet `veth` or real physical device with `macvlan` or `ipvlan` drivers https://github.com/moby/libnetwork/issues/552#issuecomment-1227821940 The `veth` can be used for internal multicast side-by-side communication between...

I have also the same request. As temporary workaround I'm planning to create a simple script running as separate independent service from Docker Compose along with Zinc service. This script...

I'm also have the same issue: ```dockerfile ARG PYTHON_IMAGE=python ARG PYTHON_VERSION=3.9.7 FROM ${PYTHON_IMAGE:-python}:${PYTHON_VERSION:-latest} ``` Error: ```plaintext No configuration was specified. Using default configuration ./Dockerfile:4:29 unexpected ':' expecting '@', '\', a...

This is annoying when using it inside Docker container with read-only volumes. Versioning is already solved by containerizing the `openapi-generator-cli` command. There should be an option to skip need for...

I have the same issue here for local multi stages. It would be nice to have a general option to disable any rule(s) using comment `#dockerfilelint disable=missing_tag`.

It is quiet easy to build it from container (Podman or Docker): ```plaintext podman run -it --rm --workdir "$(pwd)" --volume "$(pwd):$(pwd):rw,z" --user "$(id -u):$(id -g)" --userns keep-id \ mono msbuild...

It seems that `distrobox enter` adds `--env XAUTHORITY=${XAUTHORITY}` anyway in that generic for-loop: https://github.com/89luca89/distrobox/blob/1.7.2.1/distrobox-enter#L443 But still it is not present when doing: ```plaintext env | grep XAUTHORITY ``` But if...

Short story. When `--env DISPLAY=:0` is present, it will clear `XAUTHORITY`. I have been using custom AlmaLinux OS 9.3 with added user etc.. Somehow when calling `su "${USER}" --pty` when...