init all current docker compose files

This commit is contained in:
theoleuthardt 2025-07-16 11:11:24 +00:00
parent 3694b45ece
commit adc70638d1
12 changed files with 432 additions and 0 deletions

View file

@ -0,0 +1,28 @@
services:
frontend:
image: theoretisch030/werkzeugkiste-frontend:latest
container_name: werkzeugkiste-frontend
env_file: .env
environment:
- NODE_ENV=${NODE_ENV}
- HOSTNAME=${HOSTNAME}
- PORT=${FRONTEND_PORT}
ports:
- "3002:3000"
restart: unless-stopped
backend:
image: theoretisch030/werkzeugkiste-backend:latest
container_name: werkzeugkiste-backend
env_file: .env
environment:
- NODE_ENV=${NODE_ENV}
- HOSTNAME=${HOSTNAME}
- PORT=${BACKEND_PORT}
ports:
- "4000:4000"
restart: unless-stopped
networks:
default:
driver: bridge