-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
64 lines (58 loc) · 1.17 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
57
58
59
60
61
62
63
64
version: "3.8"
networks:
laravel:
name: laravel
services:
brt:
build:
context: .
dockerfile: brt.dockerfile
container_name: brt
depends_on:
- mysql
ports:
- 8080:80
volumes:
- ./src:/var/www/html
- ./apache/uploads.ini:/usr/local/etc/php/conf.d/uploads.ini
networks:
- laravel
mysql:
container_name: mysql
image: mysql:8.0
ports:
- 4306:3306
volumes:
- ./mysql:/var/lib/mysql
environment:
MYSQL_DATABASE: laraveldb
MYSQL_USER: laravel
MYSQL_PASSWORD: secret
MYSQL_ROOT_PASSWORD: secret
command: --default-authentication-plugin=mysql_native_password
networks:
- laravel
composer:
image: composer:latest
container_name: composer
volumes:
- ./src:/var/www/html
working_dir: /var/www/html
networks:
- laravel
npm:
image: node:current-alpine
container_name: npm
volumes:
- ./src:/var/www/html
working_dir: /var/www/html
entrypoint: ["npm"]
networks:
- laravel
redis:
image: redis:latest
container_name: redis
ports:
- 6379:6379
networks:
- laravel