2022-07-27 12:35:21 +01:00
|
|
|
# For more information: https://laravel.com/docs/sail
|
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
laravel.test:
|
|
|
|
build:
|
2023-02-04 12:38:22 +00:00
|
|
|
context: ./vendor/laravel/sail/runtimes/8.2
|
2022-07-27 12:35:21 +01:00
|
|
|
dockerfile: Dockerfile
|
|
|
|
args:
|
|
|
|
WWWGROUP: '${WWWGROUP}'
|
2023-02-04 12:38:22 +00:00
|
|
|
image: sail-8.2/app
|
2022-07-27 12:35:21 +01:00
|
|
|
extra_hosts:
|
|
|
|
- 'host.docker.internal:host-gateway'
|
|
|
|
ports:
|
|
|
|
- '${APP_PORT:-80}:80'
|
|
|
|
- '${VITE_PORT:-5173}:${VITE_PORT:-5173}'
|
|
|
|
environment:
|
|
|
|
WWWUSER: '${WWWUSER}'
|
|
|
|
LARAVEL_SAIL: 1
|
|
|
|
XDEBUG_MODE: '${SAIL_XDEBUG_MODE:-off}'
|
|
|
|
XDEBUG_CONFIG: '${SAIL_XDEBUG_CONFIG:-client_host=host.docker.internal}'
|
|
|
|
volumes:
|
|
|
|
- '.:/var/www/html'
|
|
|
|
networks:
|
|
|
|
- sail
|
|
|
|
depends_on:
|
|
|
|
- pgsql
|
|
|
|
- redis
|
|
|
|
pgsql:
|
|
|
|
image: 'postgres:14'
|
|
|
|
ports:
|
|
|
|
- '${FORWARD_DB_PORT:-5432}:5432'
|
|
|
|
environment:
|
|
|
|
PGPASSWORD: '${DB_PASSWORD:-secret}'
|
|
|
|
POSTGRES_DB: '${DB_DATABASE}'
|
|
|
|
POSTGRES_USER: '${DB_USERNAME}'
|
|
|
|
POSTGRES_PASSWORD: '${DB_PASSWORD:-secret}'
|
|
|
|
volumes:
|
|
|
|
- 'sail-pgsql:/var/lib/postgresql/data'
|
|
|
|
- './vendor/laravel/sail/database/pgsql/create-testing-database.sql:/docker-entrypoint-initdb.d/10-create-testing-database.sql'
|
|
|
|
networks:
|
|
|
|
- sail
|
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "pg_isready", "-q", "-d", "${DB_DATABASE}", "-U", "${DB_USERNAME}"]
|
|
|
|
retries: 3
|
|
|
|
timeout: 5s
|
|
|
|
redis:
|
|
|
|
image: 'redis:alpine'
|
|
|
|
ports:
|
|
|
|
- '${FORWARD_REDIS_PORT:-6379}:6379'
|
|
|
|
volumes:
|
|
|
|
- 'sail-redis:/data'
|
|
|
|
networks:
|
|
|
|
- sail
|
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "redis-cli", "ping"]
|
|
|
|
retries: 3
|
|
|
|
timeout: 5s
|
|
|
|
networks:
|
|
|
|
sail:
|
|
|
|
driver: bridge
|
|
|
|
volumes:
|
|
|
|
sail-pgsql:
|
|
|
|
driver: local
|
|
|
|
sail-redis:
|
|
|
|
driver: local
|