Compare commits
2 Commits
merge-all-
...
feat/add-d
| Author | SHA1 | Date | |
|---|---|---|---|
| 29ac1e0d25 | |||
| ede5ec499f |
@@ -17,10 +17,7 @@ RUN apt-get update && \
|
||||
build-essential nodejs npm python3 ripgrep ffmpeg gcc python3-dev libffi-dev procps git openssh-client docker-cli tini \
|
||||
curl poppler-utils imagemagick \
|
||||
chromium xvfb fonts-noto-color-emoji fonts-unifont fonts-liberation fonts-ipafont-gothic fonts-wqy-zenhei fonts-tlwg-loma-otf fonts-freefont-ttf \
|
||||
libasound2t64 libatk-bridge2.0-0t64 libatk1.0-0t64 libatspi2.0-0t64 libcairo2 libcups2t64 libdbus-1-3 libdrm2 libgbm1 libglib2.0-0t64 libnspr4 libnss3 libpango-1.0-0 libx11-6 libxcb1 libxcomposite1 libxdamage1 libxext6 libxfixes3 libxkbcommon0 libxrandr2 \
|
||||
texlive-latex-base texlive-latex-extra texlive-fonts-recommended texlive-xetex texlive-science \
|
||||
qemu-user-static binfmt-support qemu-user-binfmt \
|
||||
emacs-nox && \
|
||||
libasound2t64 libatk-bridge2.0-0t64 libatk1.0-0t64 libatspi2.0-0t64 libcairo2 libcups2t64 libdbus-1-3 libdrm2 libgbm1 libglib2.0-0t64 libnspr4 libnss3 libpango-1.0-0 libx11-6 libxcb1 libxcomposite1 libxdamage1 libxext6 libxfixes3 libxkbcommon0 libxrandr2 && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Non-root user for runtime; UID can be overridden via HERMES_UID at runtime
|
||||
|
||||
14
dashi/compose.yml
Normal file
14
dashi/compose.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
services:
|
||||
dashi:
|
||||
image: jamjnsn/dashi:latest
|
||||
container_name: dashi
|
||||
expose:
|
||||
- "8000"
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- dashi_net
|
||||
|
||||
networks:
|
||||
dashi_net:
|
||||
driver: bridge
|
||||
name: dashi_net
|
||||
26
env/.env.example.paperclip
vendored
26
env/.env.example.paperclip
vendored
@@ -1,26 +0,0 @@
|
||||
# Paperclip Environment Variables
|
||||
# Copy this file to your .env (at the compose root or docker-compose working directory)
|
||||
# and fill in the secrets.
|
||||
#
|
||||
# cp env/.env.example.paperclip .env
|
||||
#
|
||||
# Then reference it from compose.yml:
|
||||
# env_file:
|
||||
# - path: .env
|
||||
# required: true
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Database
|
||||
# ---------------------------------------------------------------------------
|
||||
# PostgreSQL password for the paperclip-db service.
|
||||
# Generate a strong random password:
|
||||
# openssl rand -base64 32
|
||||
PAPERCLIP_DB_PASSWORD=change_me_to_a_strong_random_password
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Authentication
|
||||
# ---------------------------------------------------------------------------
|
||||
# Secret key used by Better Auth for signing and verifying tokens.
|
||||
# Generate a strong random secret:
|
||||
# openssl rand -base64 32
|
||||
PAPERCLIP_AUTH_SECRET=change_me_to_a_strong_random_secret
|
||||
@@ -41,6 +41,7 @@ services:
|
||||
- passman_net
|
||||
- tak_net
|
||||
- vc_net
|
||||
- dashi_net
|
||||
|
||||
ddns-updater:
|
||||
image: qmcgaw/ddns-updater
|
||||
@@ -114,6 +115,9 @@ networks:
|
||||
vc_net:
|
||||
external: true
|
||||
name: vc_net
|
||||
dashi_net:
|
||||
external: true
|
||||
name: dashi_net
|
||||
|
||||
# duckdns:
|
||||
# environment:
|
||||
|
||||
Reference in New Issue
Block a user