We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1f5f02 commit dbad159Copy full SHA for dbad159
docker-env.yml
@@ -14,3 +14,5 @@ MYSQL_PASSWORD=dev
14
MYSQL_DATABASE=typo3
15
16
PHP_TIMEZONE=UTC
17
+PHP_UID=1001
18
+PHP_GID=1001
docker/main/entrypoint.sh
@@ -1,6 +1,13 @@
1
#!/bin/bash
2
set -e
3
4
+#############################
5
+## Init UID/GID
6
7
+
8
+usermod --uid "${PHP_UID}" --shell /bin/bash --home /home www-data
9
+groupmod --gid "${PHP_GID}" www-data
10
11
#############################
12
## Init MySQL
13
0 commit comments