Compare commits

..

2 commits

Author SHA1 Message Date
a65a872a83 add ports mapping 2026-03-14 11:54:13 -04:00
1094c7d8e6 update clojure line to latest 2026-03-14 11:53:59 -04:00
2 changed files with 4 additions and 1 deletions

View file

@ -12,7 +12,8 @@ RUN apk add --no-cache \
openjdk21-jdk \
git \
curl
RUN curl -O https://download.clojure.org/install/linux-install-1.11.1.1435.sh && chmod +x linux-install-1.11.1.1435.sh && ./linux-install-1.11.1.1435.sh
#RUN curl -O https://download.clojure.org/install/linux-install-1.11.1.1435.sh && chmod +x linux-install-1.11.1.1435.sh && ./linux-install-1.11.1.1435.sh
RUN curl -LO https://github.com/clojure/brew-install/releases/latest/download/linux-install.sh && chmod +x linux-install.sh && ./linux-install.sh
RUN git clone https://github.com/logseq/logseq.git && cd logseq && yarn install
#build db-sync
RUN cd logseq/deps/db-sync && yarn install && yarn build:node-adapter && yarn install --production

View file

@ -2,6 +2,8 @@ services:
logseq-sync:
container_name: logseq-sync
image: "codeberg.org/kellya/logseq-sync:latest"
ports:
- 8787:8787
volumes:
- ./data:/logseq-sync/data
# or use a named volume and uncomment the volume section below