Skip to content

Commit

Permalink
- bump versions
Browse files Browse the repository at this point in the history
- revert database path in docker compose
- update compose install / update in docker.

Took 54 minutes
  • Loading branch information
Cybrarist committed Jan 3, 2025
1 parent ceb937f commit 7c08d41
Show file tree
Hide file tree
Showing 14 changed files with 276 additions and 202 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public/hot
public_html/storage
public_html/hot

vendor/
storage/*.key
.env
Homestead.yaml
Expand Down
10 changes: 3 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ RUN apt update && apt install -y supervisor \
ENV CHROME_BIN="/usr/bin/chromium-browser"
ENV CHROME_OPTS=" --disable-dev-shm-usage --headless --disable-gpu --no-sandbox --enable-features=ConversionMeasurement --remote-debugging-port=9222 "

RUN install-php-extensions @composer

RUN docker-php-ext-install pcntl \
opcache \
pdo_mysql \
Expand All @@ -52,11 +54,6 @@ RUN docker-php-ext-install pcntl \
sockets \
zip

ENV GET_COMPOSER_VERSION="76a7060ccb93902cd7576b67264ad91c8a2700e2"
ENV COMPOSER_VERSION=2.8.2

RUN wget https://raw.githubusercontent.com/composer/getcomposer.org/$GET_COMPOSER_VERSION/web/installer -O - -q | php -- --quiet --version="$COMPOSER_VERSION" \
&& mv composer.phar /usr/local/bin/composer

COPY ./docker/base_supervisord.conf /etc/supervisor/conf.d/supervisord.conf

Expand All @@ -66,12 +63,11 @@ WORKDIR /app

EXPOSE 80 443 2019 8080


RUN chmod +x /app/*

RUN mkdir -p /config/chromium


ENV DISPLAY=:99


ENTRYPOINT ["docker/entrypoint.sh"]
Loading

0 comments on commit 7c08d41

Please sign in to comment.