Skip to content

Instantly share code, notes, and snippets.

View a10k's full-sized avatar

Alok Pepakayala a10k

View GitHub Profile
@a10k
a10k / _list.js
Last active June 2, 2021 08:11
iridium-plug
router.get("/.list", async (ctx) => {
ctx.body = fs.readdirSync(`${BASE}/.iridium-notebooks/`)
});
@a10k
a10k / Dockerfile
Last active August 27, 2021 12:37
iridum-docker
FROM node:erbium-alpine3.14
RUN apk update
RUN apk add git
WORKDIR /usr/src/app
COPY . .
RUN npm install
EXPOSE 80
CMD node index.js
@a10k
a10k / Dockerfile
Last active August 26, 2021 07:12
Local postgress & proxy server as Docker containers
FROM node:erbium-alpine3.14
WORKDIR /usr/src/app
COPY . .
RUN npm install
EXPOSE 80
CMD node index.js