Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/refactorian/nestjs-typeorm-docker
- Owner: refactorian
- Created: 2024-02-17T16:47:05.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-09-12T14:14:13.000Z (5 months ago)
- Last Synced: 2024-09-13T02:08:14.467Z (5 months ago)
- Topics: 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
- Language: TypeScript
- Homepage:
- Size: 1.15 MB
- Stars: 4
- Watchers: 1
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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]`