Stacks included:
- Infrastructure: traefik, authentik, gitea, registry, watchtower, dockge
- Monitoring: smokeping, changedetection
- Apps: ghost, gollum, wallabag, radicale, invidious, xbackbone, filebrowser, syncthing, zerotier
- Custom: obsidian-tools, memento, perilous, ramz, bookclub, brain
🤖 Generated with Claude Code
8 lines
134 B
Docker
8 lines
134 B
Docker
FROM node:18-alpine
|
|
WORKDIR /usr/src/app
|
|
COPY package.json ./
|
|
RUN npm install
|
|
COPY server.js ./
|
|
EXPOSE 3000
|
|
CMD ["node", "server.js"]
|