Skip to content

Commit f4eb88f

Browse files
committed
add magento 1 on README
1 parent f17db87 commit f4eb88f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Painless Magento 2
1+
# Painless Magento 2 & 1
22

33
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
44

5-
A dockerized magento 2 community environment ready for development or production.
5+
A dockerized magento 2 community environment ready for development or production. It supports magento 1.9.x for development
66

77
Inspired from [dockerize-magento2](https://github.com/arvatoSCM/dockerize-magento2)
88

@@ -79,27 +79,27 @@ To start, use `.env.sample` to create this file.
7979
cp .evn.sample .env
8080
```
8181
82-
Open the file and fill each variable. Each variable has values by default, you can use them as it for development but please change all for your installation in production.
82+
Open the file and fill each variable. Each variable has values by default, you can use them as it for development but please for your own safety change all for your installation in production.
8383
84-
- ### Old Magento 2 projects:
84+
- ### Old Magento projects:
8585
8686
- take a backup from your data base.
87-
- Add your existing Magento 2 code inide the `src` directory.
88-
- In the root directory of this project run the installer.
87+
- Add your existing Magento 2 code inside the `src` directory.
88+
- **Magento 2 only**: In the root directory of this project run the installer.
8989
9090
```bash
9191
sh bin/console.sh install
9292
```
9393
94-
- When the instalation is done, connect with the phpadmin you just install and use your data base backup for apply your last version.
94+
- Connect with the phpadmin you just install and use your data base backup for apply your last version. Just use the port you set on `.env` file.
9595
9696
- If you prefer, you can use [docker-compose exec](https://docs.docker.com/compose/reference/exec/) comand in the mariadb container and apply your backup using mysql, you should add your backup in the directory `config/backups` it will appears inside container at the address `/backups`
9797
9898
```bash
99-
docker-compose exec mariadb sh -c="mysql -u $DATABASE_USER -p $DATABASE_NAME < /backups/$BACKUP_FILE_NAME"
99+
docker-compose exec mysql sh -c="mysql -u $DATABASE_USER -p $DATABASE_NAME < /backups/$BACKUP_FILE_NAME"
100100
```
101101
102-
- Done, you can start to use or develop your old magento 2 project.
102+
- Done, you can start to use or develop your old magento project.
103103
104104
- ### Magento 2 from scratch
105105

0 commit comments

Comments
 (0)