3dba022221
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
403 B
YAML
24 lines
403 B
YAML
services:
|
|
bodenfeuchte:
|
|
build: .
|
|
expose:
|
|
- "3000"
|
|
volumes:
|
|
- bodenfeuchte-data:/app/data
|
|
env_file:
|
|
- .env
|
|
restart: unless-stopped
|
|
|
|
nginx:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf:ro
|
|
depends_on:
|
|
- bodenfeuchte
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
bodenfeuchte-data:
|