-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
56 lines (56 loc) · 1.46 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
services:
php:
image: abourtnik/laravel
container_name: php_container
working_dir: /var/www/html
volumes:
- ./:/var/www/html
- ./docker/php.ini:/usr/local/etc/php/php.ini
networks:
- application
restart: unless-stopped
nginx:
image: nginx:1.22.0-alpine
container_name: nginx_container
networks:
- application
ports:
- "8080:80"
volumes:
- ./docker/nginx.conf:/etc/nginx/conf.d/default.conf
- ./:/var/www/html
links:
- php
restart: unless-stopped
bun:
image: oven/bun:1.2.0
container_name: bun_container
ports:
- "5173:5173"
volumes:
- ./:/usr/src/app
working_dir: /usr/src/app
environment:
- CHOKIDAR_USEPOLLING=true
- CHOKIDAR_IGNORE_INITIAL=true
#command: tail -f /dev/null
command: bun run dev
networks:
- application
reverb:
container_name: reverb_container
image: clipzone/php
working_dir: /var/www/html
command: php artisan reverb:start --port=6001 --debug
ports:
- "6001:6001"
volumes:
- ./:/var/www/html
networks:
- application
depends_on:
- php
restart: unless-stopped
networks:
application:
driver: bridge