-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (50 loc) · 1.23 KB
/
docker-compose.yml
File metadata and controls
52 lines (50 loc) · 1.23 KB
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
version: '3'
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "80:8100"
- "5173:5173"
networks:
- mynet
volumes:
- ./:/app
depends_on:
- mysql
entrypoint: [ "/bin/bash", "-c" ]
command:
- |
composer install && npm install
php artisan key:generate && php artisan migrate
npm run dev
php artisan serve --host=0.0.0.0 --port=8100
mysql:
image: mysql:5.7
container_name: task_db
environment:
MYSQL_DATABASE: ${DB_DATABASE}
MYSQL_ROOT_PASSWORD: ${DB_PASSWORD}
MYSQL_PASSWORD: ${DB_PASSWORD}
MYSQL_USER: ${DB_USERNAME}
MYSQL_TCP_PORT: ${DB_PORT}
ports:
- "3308:${DB_PORT}"
networks:
- mynet
volumes:
- mysql_data:/var/lib/mysql
healthcheck:
test:
- CMD
- mysqladmin
- ping
- '-p${DB_PASSWORD}'
retries: 3
timeout: 5s
volumes:
mysql_data:
networks:
mynet:
driver: bridge