File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ jobs:
17
17
- name : Build
18
18
run : |
19
19
cp .env.dist .env
20
- XDEBUG=1 docker- compose build
20
+ XDEBUG=1 docker compose build
21
21
22
22
- name : Test
23
23
run : |
24
24
export MYSQL_ROOT_PASSWORD=root
25
25
set -x
26
26
ln -sr docker-compose.dev.yml docker-compose.override.yml
27
27
docker/console php -i
28
- docker- compose up -d
28
+ docker compose up -d
29
29
curl -f localhost:8080
30
30
docker/console id
31
31
docker/redis-cli info
Original file line number Diff line number Diff line change 1
- ARG PHP_VERSION=8.1
1
+ ARG PHP_VERSION=8.4
2
2
3
3
FROM php:$PHP_VERSION-fpm
4
4
5
5
ARG PECL_EXTENSIONS="apcu redis"
6
6
7
7
RUN apt-get -y update && \
8
- apt-get -y install --no-install-recommends git unzip libpng-dev libjpeg-dev libfreetype6-dev libicu-dev libzip-dev libxml2-dev libxslt-dev libwebp-dev python2 && \
8
+ apt-get -y install --no-install-recommends git unzip libpng-dev libjpeg-dev libfreetype6-dev libicu-dev libzip-dev libxml2-dev libxslt-dev libwebp-dev python3 && \
9
9
docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ --with-webp=/usr && \
10
10
docker-php-ext-install -j$(nproc) pdo_mysql bcmath gd intl opcache zip soap xsl && \
11
11
pecl install $PECL_EXTENSIONS && \
@@ -18,7 +18,7 @@ RUN apt-get -y update && \
18
18
RUN curl -Lo /usr/bin/composer https://getcomposer.org/composer-stable.phar && \
19
19
chmod +x /usr/bin/composer
20
20
21
- ARG NODE_VERSION=16
21
+ ARG NODE_VERSION=22
22
22
23
23
RUN curl -sL https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash && \
24
24
apt-get install -y nodejs
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- docker- compose run --rm app $@
3
+ docker compose run --rm app $@
You can’t perform that action at this time.
0 commit comments