-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
70 lines (65 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
version: "3.7"
services:
# image project
laravel_8:
build:
args:
user: carlos
uid: 1000
context: ./
dockerfile: Dockerfile
image: laravel-app
restart: unless-stopped
working_dir: /var/www/
volumes:
- ./:/var/www
depends_on:
- redis
- queue
networks:
- laravel-eti
# nginx
nginx:
image: nginx:alpine
restart: unless-stopped
ports:
- 8000:80
volumes:
- ./:/var/www
- ./docker/nginx/:/etc/nginx/conf.d/
networks:
- laravel-eti
postgres:
build: docker/postgres
environment:
- POSTGRES_DB=medicos_db
- POSTGRES_USER=root
- POSTGRES_PASSWORD=123123
networks:
- laravel-eti
ports:
- 5432:5432
# queue
queue:
build:
args:
user: carlos
uid: 1000
context: ./
dockerfile: Dockerfile
restart: unless-stopped
command: "php artisan queue:work"
volumes:
- ./:/var/www
depends_on:
- redis
networks:
- laravel-eti
# redis
redis:
image: redis:latest
networks:
- laravel-eti
networks:
laravel-eti:
driver: bridge