-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
67 lines (61 loc) · 1.52 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
version: "3"
services:
# image project
app:
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
working_dir: /var/www/
volumes:
- ./:/var/www
depends_on:
- redis
networks:
- laravel
# nginx
nginx:
image: nginx:alpine
restart: unless-stopped
ports:
- "8000:80"
volumes:
- ./:/var/www
- ./docker/nginx/:/etc/nginx/conf.d/
networks:
- laravel
# db postgresql
db:
image: postgres:13
platform: linux/x86_64
restart: unless-stopped
environment:
POSTGRES_DB: ${DB_DATABASE:-esqueleto_laravel}
POSTGRES_USER: ${DB_USERNAME:[email protected]}
POSTGRES_PASSWORD: ${DB_PASSWORD:-admin}
volumes:
- ./.docker/postgres/dbdata:/var/lib/postgresql/data
ports:
- "5432:5432"
networks:
- laravel
# pgAdmin
pgadmin:
image: dpage/pgadmin4
platform: linux/x86_64
restart: unless-stopped
environment:
PGADMIN_DEFAULT_EMAIL: ${PGADMIN_EMAIL:[email protected]}
PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_PASSWORD:-admin}
ports:
- "8080:80"
networks:
- laravel
# redis
redis:
image: redis:latest
networks:
- laravel
networks:
laravel:
driver: bridge