Run with Docker

Run the container

Run the container with docker run:

docker run -d \
    --restart always \
    --env-file <PATH_TO_ENV_FILE> \
    --mount type=bind,source=<LOCAL_WORKDIR>,target=/workdir \
    --mount type=bind,source=<LOCAL_KEYSTORE_PATH>,target=/app/certs.jks \
    ghcr.io/pagopa/rtd-ms-transaction-filter:latest

We suggest to use the --restart always option to ensure that even in case of application error the container will be automatically restarted.

Last updated