| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- services:
- # App service ------------------------------------------------------------------------------------------------------
- app:
- volumes: !override
- - ./:/var/www
- - ./docker/php/xdebug.ini:/usr/local/etc/php/conf.d/xdebug.ini
- - ./storage/logs/php:/var/log/php8
- environment:
- PHP_IDE_CONFIG: serverName=_
- # Queue service ----------------------------------------------------------------------------------------------------
- app-queue:
- volumes: !override
- - ./:/var/www
- - ./docker/php/xdebug.ini:/usr/local/etc/php/conf.d/xdebug.ini
- - ./storage/logs/php:/var/log/php8
- environment:
- PHP_IDE_CONFIG: serverName=_
- # Vite Service ----------------------------------------------------------------------------------------------------
- vite:
- build:
- context: .
- dockerfile: docker/nginx/Dockerfile
- restart: unless-stopped
- tty: true
- command: '/bin/sh -c ''npm run dev'''
- ports:
- - 5172:5172
- volumes:
- - ./public:/var/frontend
- - ./:/var/www
- - ./docker/nginx/conf.d/:/etc/nginx/conf.d/
- networks:
- - cpa-network
- # Database service -------------------------------------------------------------------------------------------------
- db:
- ports:
- - ${DB_EXT_PORT}:3306
- # Websocket service ------------------------------------------------------------------------------------------------
- websocket:
- command: '/bin/sh -c ''node --inspect=0.0.0.0:9229 server'''
- ports: !override
- - ${WS_PORT:-3000}:3000
- - ${WS_DEBUG_PORT:-9229}:9229
|