forked from thayronarrais/docker-laravel-postgres-nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
50 lines (47 loc) · 1.32 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
version: "3.1"
services:
redis:
image: redis:alpine
container_name: ${PROJECT_NAME}-redis
postgres:
image: postgres:9.5-alpine
container_name: ${PROJECT_NAME}-postgres
volumes:
- "./sourcefiles/postgres:/var/lib/postgresql/data"
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
ports:
- "5432:5432"
networks:
testing_net:
ipv4_address: 172.28.1.2
webserver:
image: nginx:alpine
container_name: ${PROJECT_NAME}-webserver
working_dir: /application
volumes:
- ./application:/application
- ./sourcefiles/nginx:/etc/nginx/conf.d
ports:
- "80:80"
networks:
testing_net:
ipv4_address: 172.28.1.3
php-fpm:
build: sourcefiles/php-fpm
container_name: ${PROJECT_NAME}-php-fpm
working_dir: /application
volumes:
- ./application:/application
- ./sourcefiles/php-fpm/php-ini-overrides.ini:/etc/php/7.3/fpm/conf.d/99-overrides.ini
networks:
testing_net:
ipv4_address: 172.28.1.4
networks:
testing_net:
ipam:
driver: default
config:
- subnet: 172.28.0.0/16