Skip to content

Instantly share code, notes, and snippets.

View cesurapp's full-sized avatar
🎯
odaklanma

Cesur APAYDIN cesurapp

🎯
odaklanma
View GitHub Profile
@cesurapp
cesurapp / Dockerfile
Created February 3, 2019 17:34
MariaDB for Docker Alpine
FROM alpine:latest
# -----------------------------------------------------------------------------
# Install MariaDB
# -----------------------------------------------------------------------------
RUN apk update
RUN apk add pwgen
RUN apk add mariadb mariadb-client
RUN rm -f /var/cache/apk/*
@cesurapp
cesurapp / Dockerfile
Last active February 16, 2021 11:00
Docker Centos PHP7.3 FPM
FROM centos:latest
# -----------------------------------------------------------------------------
# PHP
# -----------------------------------------------------------------------------
RUN yum -y --setopt=tsflags=nodocs update
RUN yum -y --setopt=tsflags=nodocs --nogpgcheck install epel-release
RUN yum -y --setopt=tsflags=nodocs --nogpgcheck install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
RUN yum -y --setopt=tsflags=nodocs --nogpgcheck --enablerepo=remi-php73 install \
php-cli \