-
Notifications
You must be signed in to change notification settings - Fork 34
/
docker-compose.yml
31 lines (31 loc) · 995 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
services:
laravelnuxt.api:
build:
context: ./vendor/laravel/sail/runtimes/8.3
dockerfile: Dockerfile
args:
WWWGROUP: '${WWWGROUP}'
image: sail-8.3/app
extra_hosts:
- 'host.docker.internal:host-gateway'
ports:
- '${OCTANE_PORT:-8000}:${OCTANE_PORT:-8000}'
- '${PORT:-3000}:${PORT:-3000}'
environment:
WWWUSER: '${WWWUSER}'
PORT: '${PORT}'
HOST: '0.0.0.0'
OCTANE_HOST: '0.0.0.0'
LARAVEL_SAIL: 1
XDEBUG_MODE: '${SAIL_XDEBUG_MODE:-off}'
XDEBUG_CONFIG: '${SAIL_XDEBUG_CONFIG:-client_host=host.docker.internal}'
IGNITION_LOCAL_SITES_PATH: '${PWD}'
SUPERVISOR_PHP_COMMAND: 'php artisan octane:start --watch'
volumes:
- '.:/var/www/html'
networks:
- sail
depends_on: { }
networks:
sail:
driver: bridge