mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 23:41:07 +00:00
init all current docker compose files
This commit is contained in:
parent
3694b45ece
commit
adc70638d1
12 changed files with 432 additions and 0 deletions
28
werkzeugkiste/docker-compose.yml
Normal file
28
werkzeugkiste/docker-compose.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue