30 lines
612 B
YAML
Executable File
30 lines
612 B
YAML
Executable File
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
ports:
|
|
- "3001:3000"
|
|
environment:
|
|
- NODE_ENV=development
|
|
volumes:
|
|
- .:/app
|
|
- /app/node_modules
|
|
- /app/.next
|
|
restart: unless-stopped
|
|
|
|
wiki:
|
|
build:
|
|
context: ./quartz-setup
|
|
dockerfile: Dockerfile
|
|
# Port nicht nach außen exponiert - nur intern über Docker-Netzwerk erreichbar
|
|
expose:
|
|
- "8080"
|
|
volumes:
|
|
- ./wiki-vault:/app/content
|
|
- ./quartz-setup/public:/app/public
|
|
restart: unless-stopped
|
|
environment:
|
|
- QUARTZ_BASE_URL=/wiki
|
|
|