File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 10
10
ADMIN_PW=admin
11
11
TESTER_PW=tester
12
12
PROJECT_INSTALL=
13
- IMAGE_PHP=skilldlabs/php:73 -fpm
14
- IMAGE_NGINX=skilldlabs/nginx:1.16
13
+ IMAGE_PHP=skilldlabs/php:74 -fpm
14
+ IMAGE_NGINX=skilldlabs/nginx:1.18
15
15
IMAGE_FRONT=node:lts-alpine
16
16
IMAGE_SOLR=solr:8-slim
17
17
IMAGE_REDIS=redis:5-alpine
@@ -20,9 +20,12 @@ CLEAR_FRONT_PACKAGES=no
20
20
ADD_PHP_EXT=
21
21
MAIN_DOMAIN_NAME=docker.localhost
22
22
DB_URL=sqlite:./../.cache/d8.sqlite
23
- #DB_URL=sqlite:///dev/shm/d8.sqlite # Faster but data will be lost on php container recreation
23
+ # Faster but data will be lost on php container recreation
24
+ #DB_URL=sqlite:///dev/shm/d8.sqlite
24
25
#DB_URL=mysql://d8:d8@mysql/d8
25
- DB_DATA_DIR=../.cache # Include path to this folder to your .gitignore if you override it
26
+ # Include path to this folder to your .gitignore if you override it
27
+ DB_DATA_DIR=../.cache
28
+ #DB_DATA_DIR=/dev/shm
26
29
# We're connecting through TCP. Use "redis" as host, and "6379" as port.
27
30
REDIS_HOST=redis
28
31
REDIS_PORT=6379
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ COMPOSE_NET_NAME := $(COMPOSE_PROJECT_NAME)_front
27
27
# Execute php container as regular user
28
28
php = docker-compose exec -T --user $(CUID ) :$(CGID ) php ${1}
29
29
# Execute php container as root user
30
- php-0 = docker-compose exec -T php ${1}
30
+ php-0 = docker-compose exec -T --user 0:0 php ${1}
31
31
32
32
# # Full site install from the scratch
33
33
all : | provision back front si localize hooksymlink info
You can’t perform that action at this time.
0 commit comments