65 lines
1.3 KiB
YAML
65 lines
1.3 KiB
YAML
version: '3'
|
|
services:
|
|
webserver:
|
|
image: nginx:1.27.2
|
|
volumes:
|
|
- ./:/var/www
|
|
- ./_docker/nginx/${NGINX_ENV}/conf.d/:/etc/nginx/conf.d/
|
|
ports:
|
|
- "80:80"
|
|
container_name: ntspi-nginx
|
|
depends_on:
|
|
- app
|
|
env_file:
|
|
- .env
|
|
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: _docker/app/Dockerfile
|
|
volumes:
|
|
- ./:/var/www
|
|
container_name: ntspi-php
|
|
restart: always
|
|
ports:
|
|
- '5173'
|
|
command: >
|
|
sh -c "cron && php artisan inertia:start-ssr & php-fpm"
|
|
|
|
php-queue-worker:
|
|
restart: always
|
|
build:
|
|
context: .
|
|
dockerfile: _docker/app/Dockerfile
|
|
volumes:
|
|
- ./:/var/www
|
|
container_name: ntspi-php-queue
|
|
command: php artisan queue:work --tries=3 --timeout=90 --sleep=3
|
|
|
|
db:
|
|
image: mysql:8.0
|
|
restart: always
|
|
container_name: ntspi-db
|
|
volumes:
|
|
- "./sourcefiles/mysql:/var/lib/mysql"
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=secret
|
|
- MYSQL_DATABASE=ntspi_db
|
|
- MYSQL_USER=admin
|
|
- MYSQL_PASSWORD=secret
|
|
ports:
|
|
- "3306:3306"
|
|
|
|
redis-cache:
|
|
image: redis:7.4.2
|
|
restart: always
|
|
container_name: ntspi-cache-service
|
|
ports:
|
|
- "6379:6379"
|
|
command: redis-server --save 20 1 --loglevel warning
|
|
volumes:
|
|
- cache:/data
|
|
|
|
volumes:
|
|
cache:
|
|
driver: local |