1
0

Added filesystem for content

This commit is contained in:
Richard Dern 2024-04-16 16:43:24 +02:00
parent b4adfed94c
commit 57b3326900
2 changed files with 7 additions and 0 deletions

View File

@ -30,6 +30,12 @@
'disks' => [ 'disks' => [
'content' => [
'driver' => 'local',
'root' => env('CONTENT_PATH'),
'throw' => false,
],
'local' => [ 'local' => [
'driver' => 'local', 'driver' => 'local',
'root' => storage_path('app'), 'root' => storage_path('app'),

View File

@ -19,6 +19,7 @@ services:
IGNITION_LOCAL_SITES_PATH: '${PWD}' IGNITION_LOCAL_SITES_PATH: '${PWD}'
volumes: volumes:
- '.:/var/www/html' - '.:/var/www/html'
- '../contenu:/content'
networks: networks:
- sail - sail
depends_on: depends_on: