vault backup: 2025-04-10 14:07:13
This commit is contained in:
51
.obsidian/plugins/obsidian-webpage-export-master/Dockerfile
vendored
Normal file
51
.obsidian/plugins/obsidian-webpage-export-master/Dockerfile
vendored
Normal file
@ -0,0 +1,51 @@
|
||||
FROM node:16-alpine AS Build
|
||||
|
||||
# copy the assets and source code
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
|
||||
# install dependencies
|
||||
RUN npm install
|
||||
|
||||
# build the app
|
||||
RUN npm run build
|
||||
|
||||
FROM ubuntu:20.04 AS Run
|
||||
|
||||
# Set image parameters
|
||||
ARG OBSIDIAN_VERSION=1.6.7
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
VOLUME [ "/vault", "/output", "/config.json" ]
|
||||
ENV TZ=Etc/UTC
|
||||
|
||||
# Install dependencies
|
||||
RUN apt update
|
||||
RUN apt install -y python3 python3-pip curl x11vnc xvfb tzdata jq
|
||||
|
||||
# Download the Obsidian package
|
||||
RUN curl -L "https://github.com/obsidianmd/obsidian-releases/releases/download/v${OBSIDIAN_VERSION}/obsidian_${OBSIDIAN_VERSION}_amd64.deb" -o obsidian.deb
|
||||
|
||||
# Install patcher
|
||||
RUN pip3 install electron-inject
|
||||
|
||||
# Install Obsidian
|
||||
RUN apt install -y ./obsidian.deb
|
||||
|
||||
# Copy build output
|
||||
COPY --from=Build /app/main.js /plugin/main.js
|
||||
COPY --from=Build /app/styles.css /plugin/styles.css
|
||||
COPY --from=Build /app/manifest.json /plugin/manifest.json
|
||||
|
||||
# Copy the inject scripts
|
||||
COPY docker/inject-enable.js /inject-enable.js
|
||||
|
||||
# Copy the run script
|
||||
COPY docker/run.sh /run.sh
|
||||
RUN chmod +x /run.sh
|
||||
|
||||
# Set up the vault
|
||||
RUN mkdir -p /root/.config/obsidian
|
||||
RUN mkdir /output
|
||||
RUN echo '{"vaults":{"94349b4f2b2e057a":{"path":"/vault","ts":1715257568671,"open":true}}}' > /root/.config/obsidian/obsidian.json
|
||||
|
||||
CMD xvfb-run /run.sh
|
Reference in New Issue
Block a user