Skip to content

Instantly share code, notes, and snippets.

View ahmeddabak's full-sized avatar
Drinking Tea

Ahmed Dabak ahmeddabak

Drinking Tea
View GitHub Profile
@ahmeddabak
ahmeddabak / docker-compose.yml
Created June 19, 2023 17:09
Wordpress docker compose
services:
web:
domainname: hifi-profis-da.de
hostname: www
build: ./php
volumes:
- ./html:/var/www/html
ports:
- 80:80
docker run --rm \
--pull=always \
-v "$(pwd)":/opt \
-w /opt \
laravelsail/php81-composer:latest \
bash -c "composer install && composer require laravel/sail --dev && php ./artisan sail:install --with=mysql,redis,meilisearch,mailpit,selenium"
@ahmeddabak
ahmeddabak / .psysh.php
Created August 25, 2021 09:36
Fix laravel tinker problem on shared hosting
<?php
// This overrides that behaviour to `.psysh/` inside the project
return [
'runtimeDir' => './temp/.psysh',
];