Skip to content

Instantly share code, notes, and snippets.

@michaelrosario
Forked from bozdoz/docker-compose.yml
Last active January 10, 2023 23:09
Show Gist options
  • Save michaelrosario/7ebd0d4a19763ce227ae5f09aba61d04 to your computer and use it in GitHub Desktop.
Save michaelrosario/7ebd0d4a19763ce227ae5f09aba61d04 to your computer and use it in GitHub Desktop.
Potential Expression Engine docker
version: '3.3'
services:
db:
image: mariadb
restart: always
environment:
MYSQL_ROOT_PASSWORD: supersecret
MYSQL_DATABASE: ee
MYSQL_USER: admin
MYSQL_PASSWORD: password
ports:
- 3306:3306
# help persist local mysql data
volumes:
- db_data:/var/lib/mysql
web:
image: nginx
ports:
- 8080:80
volumes:
# ./src is the expression engine files unzipped
- ./src:/var/www/html
- ./nginx.conf:/etc/nginx/conf.d/default.conf
php:
image: php:fpm
build: .
volumes:
- ./src:/var/www/html
phpmyadmin:
image: phpmyadmin/phpmyadmin
ports:
- 8081:80
depends_on:
- db
volumes:
db_data:
server {
listen 80;
index index.php index.html;
# server_name localhost;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
root /var/www/html;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment