A stack environment built using Docker Compose. It consists of the following:
- Node 12.x
- React 16.x
- Postgres 11.x
- AdnonisJs 4.x
- Npm 6.x
Clone this repository on your local computer .
Run the docker-compose up -d
.
git clone https://github.com/jadilson12/docker-compose-stack
cd docker-compose-stack
Setting environment
cp api/.env.example api/.env
cp docker-compose.example docker-compose.yml
Installing dependencies
cd api ; npm install
cd ../web-app ; npm install ; cd ..
Start compose
docker-compose up -d
Your AdonisJs is now ready!! You can access it via http://localhost:3333
.