5 Commits

Author SHA1 Message Date
theis.gaedigk 767a55c984 changed port 2025-06-17 22:03:06 +02:00
theis.gaedigk 42a2d9ed85 moved directory 2025-06-17 21:39:55 +02:00
theis.gaedigk fe02505cc6 add Dockerfile and docker-compose.yml; remove README and executable 2025-06-17 21:37:19 +02:00
theis.gaedigk f392eb3e3d changed link 2025-06-14 13:29:56 +02:00
theis.gaedigk 3b5f169f46 deletes imgs 2025-06-14 13:20:05 +02:00
905 changed files with 37 additions and 3 deletions
+18
View File
@@ -0,0 +1,18 @@
# Basis-Image
FROM node:18
# Arbeitsverzeichnis
WORKDIR /app
# Dependencies kopieren und installieren
COPY package*.json ./
RUN npm install
# App-Code kopieren
COPY . .
# Port definieren
EXPOSE 8956
# Startkommando
CMD ["node", "server.js"]
Binary file not shown.
View File
View File
+16
View File
@@ -0,0 +1,16 @@
version: '3'
services:
express-app:
build: .
container_name: cookbook
restart: unless-stopped
ports:
- "8956:80"
environment:
- NODE_ENV=production
networks:
- proxynet
networks:
proxynet:
external: true
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 302 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

View File
View File
View File
View File
View File
View File
View File
View File

Some files were not shown because too many files have changed in this diff Show More