Skip to content

Commit 7e0ecc5

Browse files
committed
Squashed commit of the following:
commit 66701e5 Author: Deeka Wong <[email protected]> Date: Wed May 25 16:38:49 2022 +0800 Default shell to zsh commit f565451 Author: Deeka Wong <[email protected]> Date: Wed May 25 16:23:59 2022 +0800 Fix commit c21e3a8 Author: Deeka Wong <[email protected]> Date: Wed May 25 16:14:05 2022 +0800 Update dockerfile commit 5d9efaf Author: Deeka Wong <[email protected]> Date: Wed May 25 15:04:25 2022 +0800 Optimize dockerfile commit 9de48ca Author: Deeka Wong <[email protected]> Date: Wed May 25 14:10:11 2022 +0800 Optimize commit 16a34ef Author: Deeka Wong <[email protected]> Date: Wed May 25 13:59:54 2022 +0800 Update Dockerfile commit b40827e Author: Deeka Wong <[email protected]> Date: Wed May 25 13:58:08 2022 +0800 Fix commit fef5fa0 Author: Deeka Wong <[email protected]> Date: Wed May 25 13:54:04 2022 +0800 Add sockets/redis/swoole installation to dockerfile commit 24fdefd Merge: 16338b3 507742f Author: Deeka Wong <[email protected]> Date: Wed May 25 11:43:58 2022 +0800 Merge pull request #4 from friendsofhyperf/enhance-facade Enhance facade
1 parent bbdf1cf commit 7e0ecc5

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

.devcontainer/Dockerfile

+26
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,29 @@ RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/
1717
# Set up the environment.
1818
ARG ID_ED25519_PRIV="none"
1919
RUN if [ "${ID_ED25519_PRIV}" != "none" ]; then su vscode -c "mkdir -p ~/.ssh/ && echo -e \"${ID_ED25519_PRIV}\" > ~/.ssh/id_ed25519 && chmod 600 ~/.ssh/id_ed25519 && ssh-keyscan github.com >> ~/.ssh/known_hosts"; fi
20+
21+
# Install php-ext sockets & bcmath
22+
RUN set -ex \
23+
&& apt-get update \
24+
&& apt-get install -y libssl-dev libcurl4-openssl-dev zsh \
25+
&& chsh -s /bin/zsh vscode \
26+
&& docker-php-ext-install sockets bcmath
27+
28+
# Install php-ext redis
29+
RUN set -ex \
30+
&& pecl install redis \
31+
&& echo "extension=redis.so" > /usr/local/etc/php/conf.d/redis.ini
32+
33+
# Install php-ext swoole
34+
ARG SWOOLE_VERSION="none"
35+
ARG SWOOLE_CONFIGURE_OPTIONS="'enable-sockets=\"no\" enable-openssl=\"yes\" enable-http2=\"yes\" enable-mysqlnd=\"yes\" enable-swoole-json=\"no\" enable-swoole-curl=\"yes\" enable-cares=\"yes\"'"
36+
RUN set -ex \
37+
&& if [ "${SWOOLE_VERSION}" != "none" ]; then PACKAGE="http://pecl.php.net/get/swoole-${SWOOLE_VERSION}.tgz"; else PACKAGE="swoole"; fi \
38+
&& pecl install --configureoptions ${SWOOLE_CONFIGURE_OPTIONS} ${PACKAGE} \
39+
&& echo "extension=swoole.so" > /usr/local/etc/php/conf.d/swoole.ini \
40+
&& echo "swoole.use_shortname = 'Off'" >> /usr/local/etc/php/conf.d/swoole.ini
41+
42+
# Configure PHP
43+
RUN set -ex \
44+
&& echo "memory_limit=1G" > /usr/local/etc/php/conf.d/default.ini \
45+
&& echo "opcache.enable_cli = 'On'" >> /usr/local/etc/php/conf.d/opcache.ini

.devcontainer/devcontainer.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010
// Use -bullseye variants on local on arm64/Apple Silicon.
1111
"VARIANT": "7-bullseye",
1212
"NODE_VERSION": "lts/*",
13-
"ID_ED25519_PRIV": "${localEnv:ID_ED25519_PRIV}"
13+
"ID_ED25519_PRIV": "${localEnv:ID_ED25519_PRIV}",
14+
// Swoole version: 4.5.7 ~ 4.8.9
15+
"SWOOLE_VERSION": "none",
16+
// https://wiki.swoole.com/#/environment?id=pecl
17+
"SWOOLE_CONFIGURE_OPTIONS": "'enable-sockets=\"yes\" enable-openssl=\"yes\" enable-http2=\"yes\" enable-mysqlnd=\"yes\" enable-swoole-json=\"yes\" enable-swoole-curl=\"yes\" enable-cares=\"yes\"'"
1418
}
1519
},
1620

0 commit comments

Comments
 (0)