A simple code for setup a local environment for development.
Just ensure that you have docker installed on your computer.
To start all services:
docker-compose up -d
To start specific services relevant to your tech stack:
docker-compose up -d postgres
Create a .env in the root folder and override your custom value. See available variables below.
- Postgres (postgres/postgres)
- MSSQL (sa/Pass@word)
... and waiting for your contribute.
- Postgres
| Variable name | Default value |
|---|---|
| POSTGRES_DB | postgres |
| POSTGRES_USER | postgres |
| POSTGRES_PASSWORD | postgres |
- Microsoft SQL Server
| Variable name | Default value |
|---|---|
| MSSQL_SA_PASSWORD | Pass@word |
- Redis
| Variable name | Default value |
|---|---|
| ALLOW_EMPTY_PASSWORD | yes |
| REDIS_DISABLE_COMMANDS | FLUSHDB,FLUSHALL |