mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
Update the 'update' method in CourseEventPolicy to check if the event was created by the user. Adjust the service name in docker-compose from 'laravel.test' to 'laravel'.
82 lines
2.4 KiB
YAML
82 lines
2.4 KiB
YAML
# For more information: https://laravel.com/docs/sail
|
|
version: '3'
|
|
services:
|
|
laravel:
|
|
build:
|
|
context: ./docker/8.2
|
|
dockerfile: Dockerfile
|
|
args:
|
|
WWWGROUP: '${WWWGROUP}'
|
|
NOSTR_PRIVATE_KEY: '${NOSTR_PRIVATE_KEY}'
|
|
image: sail-8.2/einundzwanzig
|
|
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
|
|
- meilisearch
|
|
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
|
|
meilisearch:
|
|
image: 'getmeili/meilisearch:latest'
|
|
ports:
|
|
- '${FORWARD_MEILISEARCH_PORT:-7700}:7700'
|
|
volumes:
|
|
- 'sail-meilisearch:/meili_data'
|
|
networks:
|
|
- sail
|
|
healthcheck:
|
|
test: [ "CMD", "wget", "--no-verbose", "--spider", "http://localhost:7700/health" ]
|
|
retries: 3
|
|
timeout: 5s
|
|
networks:
|
|
sail:
|
|
driver: bridge
|
|
volumes:
|
|
sail-pgsql:
|
|
driver: local
|
|
sail-redis:
|
|
driver: local
|
|
sail-meilisearch:
|
|
driver: local
|