nginx network
This commit is contained in:
parent
826c6304b3
commit
a9c267e878
|
|
@ -23,6 +23,9 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- storage-data:/var/www/html/storage/app
|
- storage-data:/var/www/html/storage/app
|
||||||
- storage-public-data:/var/www/html/storage/app/public
|
- storage-public-data:/var/www/html/storage/app/public
|
||||||
|
networks:
|
||||||
|
- nginx
|
||||||
|
- internal
|
||||||
|
|
||||||
pgsql:
|
pgsql:
|
||||||
image: postgres:15-alpine # Attention: postgres 18 n'existe pas encore (17 max), 15 est stable
|
image: postgres:15-alpine # Attention: postgres 18 n'existe pas encore (17 max), 15 est stable
|
||||||
|
|
@ -40,6 +43,8 @@ services:
|
||||||
interval: 5s
|
interval: 5s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 10
|
retries: 10
|
||||||
|
networks:
|
||||||
|
- internal
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
pgsql-data:
|
pgsql-data:
|
||||||
|
|
@ -48,3 +53,9 @@ volumes:
|
||||||
storage-data:
|
storage-data:
|
||||||
storage-public-data:
|
storage-public-data:
|
||||||
name: starter_storage_public_data
|
name: starter_storage_public_data
|
||||||
|
|
||||||
|
networks:
|
||||||
|
nginx:
|
||||||
|
external: true
|
||||||
|
internal:
|
||||||
|
driver: bridge
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue