feat: add db recreation target and update Laravel setup docs

This commit is contained in:
2025-12-14 23:12:08 +03:00
parent 2c86eda6be
commit 16e98b5663
6 changed files with 43 additions and 14 deletions

View File

@@ -13,7 +13,6 @@ ARG UID
ARG GID
# Create a new user with the specified UID and GID, reusing an existing group if GID exists
# and update php-fpm to use the new user and group
RUN if getent group ${GID}; then \
group_name=$(getent group ${GID} | cut -d: -f1); \
useradd -m -u ${UID} -g ${GID} -s /bin/bash www; \