Objective: Angular app makes REST call to NestJS API server that reads data from MongoDB.
- Using Docker, create a
my-mongo
service. MONGO_INITDB_DATABASE=tut-01
will initialize database calledtut-01
.my-mongo
service is initialized with data frommy-mongo/docker-entrypoint-initdb.d/init.js
.- Create a
my-mongo-express
to provide web based UI to view MongoDB data viahttps://localhost:8081
. - Run with
docker-compose up
.
- MongoDB configuration:
MongooseModule.forRoot('mongodb://localhost/tut-01')
- Run with
npm run start
.
- REST API call:
this.http.get<Cat[]>('http://localhost:3000/cats').pipe(
tap(cats => this.cats = cats)
).subscribe()
- Run with
ng serve
.
Learn: Run the most simple full stack application. Problem: Environment parameters hardcoded in Angular and NestJS.
- Externalise configuration using
ConfigService
. ConfigModule
loads configuration file specified by${process.env.NODE_ENV}.env
.- Create
dev.env
with key values. - Start NestJS with
NODE_ENV=dev npm run start
to setdev
environment. - Change
MongooseModule
to useforRootAsync
.
// MongooseModule.forRoot('mongodb://localhost/tut-02'),
MongooseModule.forRootAsync({
imports: [ConfigModule],
useFactory: async (configService: ConfigService) => ({
uri: configService.get('mongoDbUrl')
}),
inject: [ConfigService]
}),
environment.ts
holds values that does not change, regardless of execution environment.environment.ts
has aconfig
key that will be populated with values fromassets/config.json
.- Application fetch configuration from
./assets/config.json
before callingbootstrapModule()
. - To use different environment configuration, replace
./assets/config.json
that exist after a production build.
Learn: Application configuration via environment variables.
app-ui/Dockerfile
is a multi-stage Dockerfile for Angular application.- Use Nginx to serve production Angular build.
- Change
./assets/config.json
to./assets/config/config.json
so that configuration can be switched to local volume (if needed). - Configuration files stored in
config/config.*.json
can be to the image when building. Defaults toprod
. - Some useful Docker commands:
docker build -t app-ui .
docker run --name app-ui -p 80:80 -d app-ui
docker logs app-ui -f
docker exec -it app-ui /bin/sh
docker container start app-ui
docker container stop app-ui
docker container rm app-ui -f -v
- Reconfigure MongoDB with auth to enable access from remote IP (i.e. from one docker container to another - without docker compose).
- Update
docker-entrypoint-initdb.d
to create application's user.
- Dockerfile for NestJS builds the application.
- Set NODE_ENV prod environment.
- Run "npm run start:prod".
- To override environment when creating Docker container, use
docker run --name app-api -e "NODE_ENV=prod" -p 3000:3000 -d app-api
.
- Change NestJS's environment key separator from
.
to_
to avoid need to escape characters. - Enhance ConfigService parsing to allow overriding config keys if specified as environment properties at runtime.
1.rebuild.sh
builds Docker image for app-api and app-ui.- Add
my-api
andmy-ui
todocker-compose.yml
. - Override
my-api
's environment with service name for MongoDB calledmy-mongo
.
To use this, just run from tut-04
:
./1.rebuild.sh
docker-compose up
- Using Docker Engine, create a VirtualBox machine that runs MongoDB and MongoDB Express.
- Using Docker Engine, create a VirtualBox machines driven Docker Swarm with three nodes to run applications.
- Deploy app and ui as an application stack (
my-app
) in the Docker Swarm cluster, with scripts to scale number of containers for each service. - For this to work, images are pushed to a private Docker Hub repository.
- Repeat the above Digital Ocean's droplets and volumes.