-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
executable file
·38 lines (34 loc) · 1.11 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
###############################################################################
# Generated on phpdocker.io #
###############################################################################
version: "3.1"
services:
redis:
image: redis:alpine
container_name: sfnamaste-redis
postgres:
image: postgres:9.6-alpine
container_name: sfnamaste-postgres
working_dir: /application
volumes:
- .:/application
environment:
- POSTGRES_USER=sfnamaste
- POSTGRES_PASSWORD=sfnamaste
- POSTGRES_DB=sfnamaste
webserver:
image: nginx:latest
container_name: sfnamaste-webserver
working_dir: /application
volumes:
- .:/application
- ./phpdocker/nginx/nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- "3000:80"
php-fpm:
build: phpdocker/php-fpm
container_name: sfnamaste-php-fpm
working_dir: /application
volumes:
- .:/application
- ./phpdocker/php-fpm/php-ini-overrides.ini:/etc/php/7.2/fpm/conf.d/99-overrides.ini