mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 15:41:07 +00:00
28 lines
636 B
YAML
28 lines
636 B
YAML
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
|