For the complete documentation index, see llms.txt. This page is also available as Markdown.

Setup Mixnode

Installation and Setup NYM Mixnode

Running As User : salinem

Create file Dockerfile-Mixnode in /mainnet/salinem/

FROM bitnami/minideb:buster AS builder

RUN set -ex \
    && install_packages libssl1.1 ca-certificates curl python3 python3-pip \
    && useradd -U -m -s /sbin/nologin nym

WORKDIR /home/nym

COPY bin/mixnode.sh .
COPY .env_mixnode .
COPY bin/nym-mixnode .

# Change onwership and permissions
RUN chmod +x mixnode.sh && chown -R nym:nym ./
RUN pip3 install requests
RUN chmod +x nym-mixnode

USER nym

VOLUME [ "/home/nym/.nym" ]

EXPOSE 1789

CMD [ "./mixnode.sh" ]

And create file run.sh

Create File .env_mixnode

Create File in mixnode.sh bin/

Download Mixnode

Last updated