-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
50 lines (48 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
# For more information: https://laravel.com/docs/sail
version: '3'
services:
webapp:
build:
context: .
dockerfile: Dockerfile
working_dir: /var/www
volumes:
- '.:/var/www'
ports:
- '8000:8000'
networks:
- appnet
depends_on:
- mysql
- mongodb
mysql:
image: 'mysql:8.0'
ports:
- '${FORWARD_DB_PORT:-3306}:3306'
environment:
MYSQL_ROOT_PASSWORD: '${DB_PASSWORD}'
MYSQL_DATABASE: '${DB_DATABASE}'
MYSQL_USER: '${DB_USERNAME}'
MYSQL_PASSWORD: '${DB_PASSWORD}'
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
volumes:
- 'volmysql:/var/lib/mysql'
networks:
- appnet
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-p${DB_PASSWORD}"]
mongodb:
container_name: mongodb
image: mongo
networks:
- appnet
ports:
- 27017:27017
logging:
driver: none
networks:
appnet:
driver: bridge
volumes:
volmysql:
driver: local