**phpList4 Installation Guide with Docker Compose**
- Add Local Host Entry echo "127.0.0.1 app" | sudo tee -a /etc/hosts
- Clone Repository git clone https://github.com/phpList/base-distribution.git phplist4
- By default, the Docker Compose setup uses MySQL.To switch to PostgreSQL, edit the //docker-compose.yml// file and enable the PostgreSQL
- Start Docker Containers cd phplist4
- Start Docker Containers docker compose up -d
- Enter the Application Container docker exec -it base-distribution-app bash
- Run Database Migrations php bin/console doctrine:migrations:migrate
- Create Default Admin php bin/console phplist:defaults:import
- Open phpList // http://app:8081 //