set runner user of web service

This commit is contained in:
Bence Pőcze 2023-09-26 21:39:49 +02:00
parent fc6141e2b9
commit 713af96b9e
Signed by: bence
GPG Key ID: DC5BD6E95A333E6D
6 changed files with 37 additions and 7 deletions

View File

@ -45,6 +45,9 @@ services:
depends_on: depends_on:
mariadb: mariadb:
condition: service_healthy condition: service_healthy
environment:
- USER_UID=<runner user uid>
- USER_GID=<runner user gid>
ports: ports:
- 80:80 - 80:80
- 8090:8090 - 8090:8090
@ -91,6 +94,10 @@ docker compose up -d
### Docker Compose ### Docker Compose
Set the following environment variables in your shell:
* `USER_UID`: your user ID
* `USER_GID`: your user's group ID
Execute the following command from the repo root: Execute the following command from the repo root:
```bash ```bash
docker compose up -d docker compose up -d

View File

@ -8,6 +8,9 @@ services:
depends_on: depends_on:
mariadb: mariadb:
condition: service_healthy condition: service_healthy
environment:
- USER_UID
- USER_GID
ports: ports:
- 80:80 - 80:80
- 5000:5000 - 5000:5000

View File

@ -2,7 +2,7 @@ FROM ubuntu:focal AS mapg_base
ENV DEBIAN_FRONTEND noninteractive ENV DEBIAN_FRONTEND noninteractive
RUN apt update --fix-missing && apt install -y curl git unzip mariadb-client nginx \ RUN apt update --fix-missing && apt install -y sudo curl git unzip mariadb-client nginx \
php-apcu php7.4-cli php7.4-curl php7.4-fpm php7.4-mbstring php7.4-mysql php7.4-zip php7.4-xml php-apcu php7.4-cli php7.4-curl php7.4-fpm php7.4-mbstring php7.4-mysql php7.4-zip php7.4-xml
RUN mkdir -p /run/php RUN mkdir -p /run/php
@ -30,6 +30,7 @@ EXPOSE 8090
EXPOSE 9229 EXPOSE 9229
ENTRYPOINT docker/scripts/entry-point-dev.sh ENTRYPOINT docker/scripts/entry-point-dev.sh
FROM mapg_base AS mapg_release FROM mapg_base AS mapg_release
RUN apt update --fix-missing && apt install -y cron RUN apt update --fix-missing && apt install -y cron
@ -37,7 +38,7 @@ RUN apt update --fix-missing && apt install -y cron
WORKDIR /var/www/mapguesser WORKDIR /var/www/mapguesser
COPY ./ /var/www/mapguesser COPY ./ /var/www/mapguesser
RUN docker/scripts/release.sh &&\ RUN docker/scripts/release.sh &&\
rm -rf /var/www/mapguesser/.git /var/www/mapguesser/.env rm -rf /var/www/mapguesser/.git
EXPOSE 80 EXPOSE 80
EXPOSE 8090 EXPOSE 8090

View File

@ -2,7 +2,10 @@
set -e set -e
chmod 777 cache if [ -z "$USER_UID" ] or [ -z "$USER_GID" ]; then
echo "USER_UID and USER_GID should be set"
exit 1
fi
echo "Installing Composer packages..." echo "Installing Composer packages..."
if [ -f .env ]; then if [ -f .env ]; then
@ -20,11 +23,16 @@ echo "Installing Yarn packages..."
echo "Migrating DB..." echo "Migrating DB..."
./mapg db:migrate ./mapg db:migrate
echo "Set runner user..."
groupadd --gid $USER_GID mapg
useradd --uid $USER_UID --gid $USER_GID mapg
sed -i -e "s/^user = .*$/user = mapg/g" -e "s/^group = .*$/group = mapg/g" /etc/php/7.4/fpm/pool.d/www.conf
set +e set +e
/usr/sbin/php-fpm7.4 -F & /usr/sbin/php-fpm7.4 -F &
/usr/sbin/nginx -g 'daemon off;' & /usr/sbin/nginx -g 'daemon off;' &
/usr/bin/node --inspect=0.0.0.0:9229 multi & sudo -u mapg -g mapg /usr/bin/node --inspect=0.0.0.0:9229 multi &
wait -n wait -n

View File

@ -2,18 +2,29 @@
set -e set -e
if [ -z "$USER_UID" ] or [ -z "$USER_GID" ]; then
echo "USER_UID and USER_GID should be set"
exit 1
fi
echo "Migrating DB..." echo "Migrating DB..."
./mapg db:migrate ./mapg db:migrate
echo "Installing crontab..." echo "Installing crontab..."
/usr/bin/crontab docker/scripts/cron /usr/bin/crontab docker/scripts/cron
echo "Set runner user..."
groupadd --gid $USER_GID mapg
useradd --uid $USER_UID --gid $USER_GID mapg
chown mapg:mapg cache
sed -i -e "s/^user = .*$/user = mapg/g" -e "s/^group = .*$/group = mapg/g" /etc/php/7.4/fpm/pool.d/www.conf
set +e set +e
/usr/sbin/cron -f & /usr/sbin/cron -f &
/usr/sbin/php-fpm7.4 -F & /usr/sbin/php-fpm7.4 -F &
/usr/sbin/nginx -g 'daemon off;' & /usr/sbin/nginx -g 'daemon off;' &
/usr/bin/node multi & sudo -u mapg -g mapg /usr/bin/node multi &
wait -n wait -n

View File

@ -2,8 +2,6 @@
set -e set -e
chmod 777 cache
echo "Installing Composer packages..." echo "Installing Composer packages..."
composer create-project --no-dev composer create-project --no-dev
@ -28,3 +26,5 @@ find public/static/img -type f -iname '*.svg' -exec svgo {} -o {} \;
echo "Linking view files..." echo "Linking view files..."
./mapg view:link ./mapg view:link
rm .env