I'm trying to get this working in a simple alpine linux container: ```Dockerfile FROM docker.io/alpine:latest ARG BUILD_DATE ARG UID LABEL name=mailctl LABEL version="$IMAGE_VERSION" LABEL created="$BUILD_DATE" EXPOSE 8080 RUN adduser -D -s /bin/ash -u ${UID} mailctl RUN echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories RUN apk add --no-cache \ gopass \ mailctl@testing USER mailctl ENTRYPOINT ["tail", "-f", "/dev/null"] ``` Then the run commands: ```make podman run -it --replace --userns=keep-id \ -v ~/.config/mailctl:/home/mailctl/.config/mailctl:z \ -p 8080:8080 \ --name mailctl \ localhost/mailctl ``` My services file is pretty much the same as the one in the [sample](https://github.com/pdobsan/mailctl/blob/main/configs/services-template.yaml#L20) for the microsoft account. Inside the container I am able to run netcat ie `nc -l 10.89.0.2 -p 8080` and connect to it with `telnet localhost 8080`, but I'm unable to use mailctl on that port/configuration. `wget -q -O - http://localhost:8080/start` gives "connection reset by peer". Other ports are connection refused as expected. Works inside the container, but not from the outside.
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by dngray and has received 5 comments.