Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/refactorian/nestjs-typeorm-docker

NestJS Docker Easy Starter Kit - NestJS v10.x, MariaDB v10.11.x, phpMyAdmin v5.x
https://github.com/refactorian/nestjs-typeorm-docker

adminer docker docker-compose mariadb mariadb-docker mysql mysql-docker nestjs nestjs-docker nestjs-dockerized nestjs-postgres nodejs npm pgadmin-docker pgadmin4 phpmyadmin phpmyadmin-docker postgres postgresql

Last synced: 3 months ago
JSON representation

NestJS Docker Easy Starter Kit - NestJS v10.x, MariaDB v10.11.x, phpMyAdmin v5.x

Awesome Lists containing this project

README

        

Nest Logo

# NestJS Docker Starter Kit
- NestJS v10.x
- TypeScript v5.x
- MariaDB v10.11.x (default)
- MySQL v8.1.x
- phpMyAdmin v5.x
- Postgres v16.x
- pgAdmin v4.x
- Adminer v4.8.x
- Node.js v18.x
- NPM v10.x

# Requirements
- Stable version of [Docker](https://docs.docker.com/engine/install/)
- Compatible version of [Docker Compose](https://docs.docker.com/compose/install/#install-compose)

# How To Deploy

- `docker compose up -d`

# Notes

### App
- URL: http://localhost:3000

### phpMyAdmin
- URL: http://localhost:8080
- Server: `db`
- Username: `refactorian`
- Password: `refactorian`
- Database: `refactorian`

### Adminer
- URL: http://localhost:9090
- Server: `db`
- Username: `refactorian`
- Password: `refactorian`
- Database: `refactorian`

### Docker compose commands
- Build or rebuild services
- `docker compose build`
- Create and start containers
- `docker compose up -d`
- Stop and remove containers, networks
- `docker compose down`
- Stop all services
- `docker compose stop`
- Restart service containers
- `docker compose restart`
- Run a command inside a container
- `docker compose exec [container] [command]`