Initial commit: add .gitignore and README

This commit is contained in:
defiQUG
2026-02-09 21:51:48 -08:00
commit d4ba3d45e5
174 changed files with 32756 additions and 0 deletions

15
config/tessera/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
ARG TESSERA_VERSION=latest
FROM quorumengineering/tessera:${TESSERA_VERSION}
# develop uses a debain container, all releases use an alpine container - this allows both to be used for the quickstart
# set the version in ../../.env
RUN if [ -e /sbin/apk ] ; then apk add gettext --no-cache ; else apt-get update && apt-get install -y gettext && rm -rf /var/lib/apt/lists/* ; fi
ENV JAVA_OPTS="-Dlogback.configurationFile=/data/logback.xml"
COPY docker-entrypoint.sh /usr/bin/
COPY data data
ENTRYPOINT ["docker-entrypoint.sh"]