-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
39 lines (36 loc) · 1.15 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:
webserver:
image: 'nginx:alpine'
restart: always
networks:
local_www:
working_dir: /application
volumes:
- './application:/application'
- './storage:/application/public/storage'
- './logs:/var/log/nginx'
- './phpdocker/nginx/nginx.conf:/etc/nginx/conf.d/default.conf'
ports:
- '27800:80'
php-fpm:
build: phpdocker/php-fpm-ix
restart: always
networks:
local_www:
working_dir: /application
volumes:
- './application:/application'
- './cache:/cache'
- './storage:/storage'
- './phpdocker/php-fpm-ix/php-ini-overrides.ini:/etc/php/7.4/fpm/conf.d/99-overrides.ini'
networks:
local_www:
driver: bridge
ipam:
driver: default
config:
- subnet: 10.33.113.0/24