Update paths for config/ directory structure
Adjusted all references to match new config/ structure: - docker/config/nginx/default.conf → config/nginx/default.conf - docker/init.sql → config/docker/init.sql - docker/start.sh → config/docker/start.sh Updated files: - docker-compose.yml: Updated volume mount paths - README.md: Updated project structure documentation New structure consolidates all configuration files under config/ for better organization and clarity. Tested and verified all services running correctly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
12
README.md
12
README.md
@@ -44,12 +44,12 @@ docker-compose up -d --build
|
|||||||
.
|
.
|
||||||
├── docker-compose.yml # Docker Compose Konfiguration
|
├── docker-compose.yml # Docker Compose Konfiguration
|
||||||
├── Dockerfile # PHP Container Image
|
├── Dockerfile # PHP Container Image
|
||||||
├── docker/ # Docker-spezifische Dateien
|
├── config/ # Konfigurationsdateien
|
||||||
│ ├── config/
|
│ ├── docker/
|
||||||
│ │ └── nginx/
|
│ │ ├── init.sql # Datenbank Initialisierung
|
||||||
│ │ └── default.conf # Nginx Konfiguration
|
│ │ └── start.sh # Container Start-Script (unused)
|
||||||
│ ├── init.sql # Datenbank Initialisierung
|
│ └── nginx/
|
||||||
│ └── start.sh # Container Start-Script (unused)
|
│ └── default.conf # Nginx Konfiguration
|
||||||
├── src/ # Anwendungscode
|
├── src/ # Anwendungscode
|
||||||
│ ├── api.php
|
│ ├── api.php
|
||||||
│ ├── index.php
|
│ ├── index.php
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ services:
|
|||||||
- ./composer.lock:/var/www/composer.lock
|
- ./composer.lock:/var/www/composer.lock
|
||||||
- ./phpstan.neon:/var/www/phpstan.neon
|
- ./phpstan.neon:/var/www/phpstan.neon
|
||||||
- ./phpcs.xml:/var/www/phpcs.xml
|
- ./phpcs.xml:/var/www/phpcs.xml
|
||||||
- ./docker/config/nginx/default.conf:/etc/nginx/conf.d/default.conf
|
- ./config/nginx/default.conf:/etc/nginx/conf.d/default.conf
|
||||||
depends_on:
|
depends_on:
|
||||||
- mariadb
|
- mariadb
|
||||||
networks:
|
networks:
|
||||||
@@ -34,7 +34,7 @@ services:
|
|||||||
- "3307:3306"
|
- "3307:3306"
|
||||||
volumes:
|
volumes:
|
||||||
- mariadb_data:/var/lib/mysql
|
- mariadb_data:/var/lib/mysql
|
||||||
- ./docker/init.sql:/docker-entrypoint-initdb.d/init.sql
|
- ./config/docker/init.sql:/docker-entrypoint-initdb.d/init.sql
|
||||||
networks:
|
networks:
|
||||||
- app-network
|
- app-network
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user