Compare commits
5 Commits
imgs
...
debian12-docker
| Author | SHA1 | Date | |
|---|---|---|---|
| 767a55c984 | |||
| 42a2d9ed85 | |||
| fe02505cc6 | |||
| f392eb3e3d | |||
| 3b5f169f46 |
+18
@@ -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.
@@ -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
Binary file not shown.
|
Before Width: | Height: | Size: 49 KiB |
BIN
Binary file not shown.
|
Before Width: | Height: | Size: 21 KiB |
BIN
Binary file not shown.
|
Before Width: | Height: | Size: 38 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 302 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 29 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 54 KiB |
Generated
Vendored
Generated
Vendored
Generated
Vendored
Generated
Vendored
Generated
Vendored
Generated
Vendored
Generated
Vendored
Generated
Vendored
Generated
Vendored
Generated
Vendored
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user