Skip to content

Instantly share code, notes, and snippets.

View ckwillling's full-sized avatar

ZhiYu ckwillling

View GitHub Profile
@jpswade
jpswade / php7.4-fpm-alpine
Last active October 19, 2024 10:44
PHP 7.4 PHP-FPM Alpine with core extensions gd
FROM php:7.4-fpm-alpine
# @see https://hub.docker.com/r/jpswade/php7.4-fpm-alpine
MAINTAINER Agent Software <[email protected]>
# Install gd, iconv, mbstring, mysql, soap, sockets, zip, and zlib extensions
# see example at https://hub.docker.com/_/php/
RUN apk add --update \
$PHPIZE_DEPS \
freetype-dev \
git \
@TheWaWaR
TheWaWaR / gunicorn_service.py
Last active September 28, 2025 01:23
Gunicorn service script {Start | Restart | Stop | Reload | Quit}
#!/usr/bin/env python
#coding: utf-8
import os
import imp
import time
import signal
import argparse
import commands