-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (43 loc) · 946 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
version: '3'
services:
#php
app:
build:
args:
user: laravel
uid: 1000
context: ./docker-compose
dockerfile: php.dockerfile
# image: php
container_name: php-app
restart: unless-stopped
working_dir: /var/www/
volumes:
- ./:/var/www
networks:
- laravel
#Nginx Service
webserver:
image: nginx:alpine
container_name: webserver
restart: unless-stopped
tty: true
ports:
- "8000:80"
volumes:
- ./:/var/www
- ./docker-compose/nginx:/etc/nginx/conf.d/
networks:
- laravel
networks:
laravel:
driver: bridge
volumes:
laravelmysql:
driver: local
laravelredis:
driver: local
laravelmeilisearch:
driver: local
dbdata:
driver: local