https://github.com/00f100/magento2-docker-install
Magento 2.3 develop into Docker container
https://github.com/00f100/magento2-docker-install
docker docker-compose docker-image magento2 magento2-development magento2-docker
Last synced: 9 months ago
JSON representation
Magento 2.3 develop into Docker container
- Host: GitHub
- URL: https://github.com/00f100/magento2-docker-install
- Owner: 00F100
- Created: 2019-08-30T14:45:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-15T07:14:49.000Z (almost 7 years ago)
- Last Synced: 2025-04-22T13:55:28.861Z (about 1 year ago)
- Topics: docker, docker-compose, docker-image, magento2, magento2-development, magento2-docker
- Language: Makefile
- Homepage:
- Size: 20.5 KB
- Stars: 3
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Magento2 Docker Develop Install
This repository is dedicated to magento 2.3-develop for bug fixes and make features.
----
##### Dependencies
1) Install [docker](https://docs.docker.com/install/)
1) Install [docker-compose](https://docs.docker.com/compose/install/)
1) Install [make](https://www.gnu.org/software/make/)
1) Configure execute docker non-root
```
sudo usermod -aG docker [your-user]
```
##### Important
Stop all docker containers or native services on uses ports 80, 443, 3306.
----
### Install
```
$ git clone git@github.com:00F100/magento2-docker-install.git
$ cd magento2-docker-install
$ make install
```
----
### Store and admin
- Storefront: https://localhost.magento.com
- Admin: https://localhost.magento.com/admin
- Username: `admin`
- Password: `123123q`
### Datasource
- PHPMyAdmin: http://localhost:8080
- Host: `magento2-database` or get IP executing `docker exec -it magento2-database bash -c "hostname -i"`
- Username: root
- Password: root
### Console PHP + Composer + NPM
```
$ make console
```
### Up Docker
```
$ make up
```
### Down Docker
```
$ make down
```
### Simple data
```
$ make simple-data
```
### About images
- [Docker MySQL](https://hub.docker.com/_/mysql)
- [Docker PHPMyAdmin](https://hub.docker.com/r/phpmyadmin/phpmyadmin)
- [Docker Nginx](https://hub.docker.com/_/nginx)
- [Docker PHP 7.2.20-alpine](https://github.com/00F100/magento-php/tree/master/alpine/7.2.20/fpm)
----