Skip to main content
Module

x/silverbullet/Dockerfile

Markdown as a platform
Go to Latest
File
FROM denoland/deno:alpine-1.28.3
# The volume that will keep the space data# Create a volume first:# docker volume create myspace# Then bind-mount it when running the container with the -v flag, e.g.:# docker run -v myspace:/space -it zefhemel/silverbulletVOLUME /space
# Copy the bundled version of silverbullet into the containerADD ./dist/silverbullet.js /silverbullet.js
# Make sure the deno user has access to the space volumeRUN mkdir -p /spaceRUN chown -R deno:deno /space
# deno user id is 1000 in alpine imageUSER deno
# Expose port 3000# Port map this when running, e.g. with -p 3002:3000 (where 3002 is the host port)EXPOSE 3000
# Run the server, allowing to pass in additional argument at run time, e.g.# docker run -p 3002:3000 -v myspace:/space -it zefhemel/silverbullet --user me:letmeinENTRYPOINT ["/tini", "--", "deno", "run", "-A", "--unstable", "/silverbullet.js", "--hostname", "0.0.0.0", "/space"]