-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
50 lines (47 loc) · 1.12 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
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:
- "8989:80"
volumes:
- ./:/var/www
- ./docker/nginx/:/etc/nginx/conf.d/
networks:
- laravel
# db POSTGRES
db:
image: postgres:16.4
restart: unless-stopped
environment:
POSTGRES_DB: ${DB_DATABASE:-laravel} # Corrigido
POSTGRES_USER: ${DB_USERNAME:-username}
POSTGRES_PASSWORD: ${DB_PASSWORD:-userpass}
volumes:
- ./.docker/postgres/dbdata:/var/lib/postgresql/data # Corrigido
ports:
- "5433:5432"
networks:
- laravel
# redis
redis:
image: redis:latest
networks:
- laravel
networks:
laravel:
driver: bridge