-
Notifications
You must be signed in to change notification settings - Fork 13
/
docker-compose-fpm.yml
60 lines (53 loc) · 940 Bytes
/
docker-compose-fpm.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
---
version: '3.8'
services:
db:
image: "mariadb:${MARIADB_VERSION}"
restart: always
volumes:
- db:/var/lib/mysql
- ./mariadb:/etc/mysql/conf.d
networks:
- backend
env_file:
- .env
memcached:
image: memcached:alpine
restart: always
networks:
- backend
web:
build: apache/
restart: always
networks:
- frontend
- backend
ports:
- "${IDOIT_WEB_PORT}:80"
depends_on:
- idoit
volumes:
- type: volume
source: idoit
target: /var/www/html
read_only: true
volume:
nocopy: true
idoit:
build: "./${IDOIT_VERSION}/${IDOIT_VARIANT}/php${PHP_VERSION}/fpm/"
restart: always
volumes:
- idoit:/var/www/html
networks:
- backend
depends_on:
- db
- memcached
env_file:
- .env
volumes:
idoit:
db:
networks:
frontend:
backend: