Skip to content

Commit

Permalink
feat: removed blank line from a file
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmolinacano committed Sep 5, 2023
1 parent 4e807b4 commit 541ddd1
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ test_doofinder.php
vendor/
composer.lock
.php-cs-fixer.dist.php
.php-cs-fixer.cache
.php-cs-fixer.cache
/html
/html/**
28 changes: 22 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,38 @@ services:
MYSQL_PASSWORD: prestashop
MYSQL_ROOT_PASSWORD: prestashop
ports:
- 3308:3306
container_name: local-prestashop-mysql
- 3311:3306
container_name: local-prestashop-1.7-mysql

prestashop:
depends_on:
- db
image: prestashop/prestashop:1.7
ports:
- 9000:80
- 443:443
- 9011:80
- 9445:443
environment:
PS_DB_HOST: db:3306
PS_DB_USER: prestashop
PS_DB_PASSWORD: prestashop
volumes:
- ./html:/var/www/html
container_name: local-web-prestashop
container_name: local-web-prestashop-1.7

# PhpMyAdmin container
phpmyadmin:
depends_on:
- db
image: phpmyadmin/phpmyadmin
container_name: local-prestashop-1.7-phpmyadmin
environment:
PMA_HOST: db
PMA_PORT: 3306
PMA_USER: prestashop
PMA_PASSWORD: prestashop
ports:
- 8094:80
links:
- db
volumes:
data:
data:
1 change: 0 additions & 1 deletion lib/dfTools.class.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* NOTICE OF LICENSE
*
Expand Down

0 comments on commit 541ddd1

Please sign in to comment.