ci(docker): use docker compose yaml anchor values and extension fields

This commit is contained in:
Amruth Pillai 2022-03-24 11:32:57 +01:00
parent 786937f847
commit ff8b22274f
No known key found for this signature in database
GPG Key ID: E3C57DF9B80855AD
7 changed files with 55 additions and 123 deletions

View File

@ -13,11 +13,15 @@
"extensions": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "lokalise.i18n-ally"], "extensions": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "lokalise.i18n-ally"],
// Use 'forwardPorts' to make a list of ports inside the container available locally. // Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [3000, 3100, 3200, 5432], "forwardPorts": [80, 5432],
// Use 'postCreateCommand' to run commands after the container is created. // Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "pnpm install", "postCreateCommand": "pnpm install",
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "node" "remoteUser": "node",
"features": {
"docker-from-docker": "latest"
}
} }

View File

@ -1,12 +1,14 @@
# Global # Shared
TZ=UTC TZ=UTC
PUBLIC_URL=http://localhost
PUBLIC_SERVER_URL=http://localhost/api
PUBLIC_GOOGLE_CLIENT_ID=
# Server # Server
SECRET_KEY= SECRET_KEY=
PUBLIC_URL=http://<SERVER-IP> POSTGRES_HOST=postgres
POSTGRES_HOST=localhost
POSTGRES_PORT=5432 POSTGRES_PORT=5432
POSTGRES_USERNAME=postgres POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres POSTGRES_PASSWORD=postgres
POSTGRES_DATABASE=postgres POSTGRES_DATABASE=postgres
POSTGRES_SSL_CERT= POSTGRES_SSL_CERT=
@ -20,12 +22,5 @@ SENDGRID_FORGOT_PASSWORD_TEMPLATE_ID=
SENDGRID_FROM_NAME= SENDGRID_FROM_NAME=
SENDGRID_FROM_EMAIL= SENDGRID_FROM_EMAIL=
# Client # Flags
PUBLIC_URL=http://<SERVER-IP> PUBLIC_FLAG_DISABLE_SIGNUPS=false
PUBLIC_SERVER_URL=http://<SERVER-IP>/api
PUBLIC_GOOGLE_CLIENT_ID=
# Postgres
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DATABASE=postgres

View File

@ -1,71 +0,0 @@
version: '3'
services:
postgres:
image: postgres:14.2-alpine
container_name: postgres
ports:
- 5432:5432
env_file: .env
volumes:
- ./scripts/database/initialize.sql:/docker-entrypoint-initdb.d/initialize.sql
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres" ]
interval: 30s
timeout: 30s
start_period: 15s
retries: 3
restart: always
traefik:
image: traefik
container_name: traefik
command:
- --providers.docker=true
- --providers.docker.exposedbydefault=false
- --entrypoints.web.address=:80
ports:
- 80:80
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
server:
build:
context: .
dockerfile: server/Dockerfile
container_name: server
env_file: .env
environment:
- PUBLIC_URL=http://localhost
- POSTGRES_HOST=postgres
- POSTGRES_DATABASE=reactive_resume
depends_on:
- traefik
- postgres
labels:
- traefik.enable=true
- traefik.http.routers.server.entrypoints=web
- traefik.http.routers.server.rule=Host(`localhost`) && PathPrefix(`/api/`)
- traefik.http.routers.server.middlewares=server-stripprefix
- traefik.http.middlewares.server-stripprefix.stripprefix.prefixes=/api
- traefik.http.middlewares.server-stripprefix.stripprefix.forceslash=true
client:
build:
context: .
dockerfile: client/Dockerfile
container_name: client
env_file: .env
environment:
- PUBLIC_SERVER_URL=http://localhost/api
depends_on:
- traefik
- server
labels:
- traefik.enable=true
- traefik.http.routers.client.rule=Host(`localhost`)
- traefik.http.routers.client.entrypoints=web
volumes:
pgdata:

View File

@ -1,22 +1,46 @@
version: '3' version: '3'
x-env-shared: &env-shared
environment:
- TZ=UTC
- PUBLIC_URL=http://localhost
- PUBLIC_SERVER_URL=http://localhost/api
- PUBLIC_GOOGLE_CLIENT_ID=
x-env-server: &env-server
environment:
- SECRET_KEY=
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DATABASE=postgres
- POSTGRES_SSL_CERT=
- JWT_SECRET=
- JWT_EXPIRY_TIME=604800
- PUBLIC_GOOGLE_CLIENT_ID=
- GOOGLE_CLIENT_SECRET=
- GOOGLE_API_KEY=
- SENDGRID_API_KEY=
- SENDGRID_FORGOT_PASSWORD_TEMPLATE_ID=
- SENDGRID_FROM_NAME=
- SENDGRID_FROM_EMAIL=
x-env-flags: &env-flags
environment:
- PUBLIC_FLAG_DISABLE_SIGNUPS=false
services: services:
postgres: postgres:
image: postgres:14.2-alpine image: postgres:14.2-alpine
container_name: postgres container_name: postgres
ports:
- 5432:5432
environment:
- POSTGRES_USER="postgres"
- POSTGRES_PASSWORD="postgres"
- POSTGRES_DATABASE="postgres"
volumes: volumes:
- pgdata:/var/lib/postgresql/data - pgdata:/var/lib/postgresql/data
healthcheck: healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres" ] test: [ "CMD-SHELL", "pg_isready -U postgres" ]
start_period: 15s
interval: 30s interval: 30s
timeout: 30s timeout: 30s
start_period: 15s
retries: 3 retries: 3
restart: always restart: always
@ -35,32 +59,15 @@ services:
server: server:
image: amruthpillai/reactive-resume:server-latest image: amruthpillai/reactive-resume:server-latest
container_name: server container_name: server
environment: <<: *env-shared
- TZ="UTC" <<: *env-server
- SECRET_KEY=""
- PUBLIC_URL="http://<SERVER-IP>"
- POSTGRES_HOST="postgres"
- POSTGRES_PORT="5432"
- POSTGRES_USERNAME="postgres"
- POSTGRES_PASSWORD="postgres"
- POSTGRES_DATABASE="postgres"
- POSTGRES_SSL_CERT=""
- JWT_SECRET=""
- JWT_EXPIRY_TIME="604800"
- PUBLIC_GOOGLE_CLIENT_ID=""
- GOOGLE_CLIENT_SECRET=""
- GOOGLE_API_KEY=""
- SENDGRID_API_KEY="" # Optional
- SENDGRID_FORGOT_PASSWORD_TEMPLATE_ID="" # Optional
- SENDGRID_FROM_NAME="" # Optional
- SENDGRID_FROM_EMAIL="" # Optional
depends_on: depends_on:
- traefik - traefik
- postgres - postgres
labels: labels:
- traefik.enable=true - traefik.enable=true
- traefik.http.routers.server.entrypoints=web - traefik.http.routers.server.entrypoints=web
- traefik.http.routers.server.rule=Host(`<SERVER-IP>`) && PathPrefix(`/api/`) - traefik.http.routers.server.rule=Host(`localhost`) && PathPrefix(`/api/`)
- traefik.http.routers.server.middlewares=server-stripprefix - traefik.http.routers.server.middlewares=server-stripprefix
- traefik.http.middlewares.server-stripprefix.stripprefix.prefixes=/api - traefik.http.middlewares.server-stripprefix.stripprefix.prefixes=/api
- traefik.http.middlewares.server-stripprefix.stripprefix.forceslash=true - traefik.http.middlewares.server-stripprefix.stripprefix.forceslash=true
@ -69,17 +76,14 @@ services:
client: client:
image: amruthpillai/reactive-resume:client-latest image: amruthpillai/reactive-resume:client-latest
container_name: client container_name: client
environment: <<: *env-shared
- TZ="UTC" <<: *env-flags
- PUBLIC_URL="http://<SERVER-IP>"
- PUBLIC_SERVER_URL="http://<SERVER-IP>/api"
- PUBLIC_GOOGLE_CLIENT_ID=""
depends_on: depends_on:
- traefik - traefik
- server - server
labels: labels:
- traefik.enable=true - traefik.enable=true
- traefik.http.routers.client.rule=Host(`<SERVER-IP>`) - traefik.http.routers.client.rule=Host(`localhost`)
- traefik.http.routers.client.entrypoints=web - traefik.http.routers.client.entrypoints=web
restart: always restart: always

View File

@ -65,7 +65,7 @@ This URL is used when export PDF functionality is used within the app and has to
**Default Value:** `5432` **Default Value:** `5432`
**Description:** Port of the PostgreSQL Server **Description:** Port of the PostgreSQL Server
### `POSTGRES_USERNAME` ### `POSTGRES_USER`
**Required**: `yes` **Required**: `yes`
**Default Value:** `postgres` **Default Value:** `postgres`

View File

@ -21,7 +21,7 @@ const validationSchema = Joi.object({
// Database // Database
POSTGRES_HOST: Joi.string().required(), POSTGRES_HOST: Joi.string().required(),
POSTGRES_PORT: Joi.number().default(5432), POSTGRES_PORT: Joi.number().default(5432),
POSTGRES_USERNAME: Joi.string().required(), POSTGRES_USER: Joi.string().required(),
POSTGRES_PASSWORD: Joi.string().required(), POSTGRES_PASSWORD: Joi.string().required(),
POSTGRES_DATABASE: Joi.string().required(), POSTGRES_DATABASE: Joi.string().required(),
POSTGRES_SSL_CERT: Joi.string().allow(''), POSTGRES_SSL_CERT: Joi.string().allow(''),

View File

@ -3,7 +3,7 @@ import { registerAs } from '@nestjs/config';
export default registerAs('postgres', () => ({ export default registerAs('postgres', () => ({
host: process.env.POSTGRES_HOST, host: process.env.POSTGRES_HOST,
port: parseInt(process.env.POSTGRES_PORT, 10) || 5432, port: parseInt(process.env.POSTGRES_PORT, 10) || 5432,
username: process.env.POSTGRES_USERNAME, username: process.env.POSTGRES_USER,
password: process.env.POSTGRES_PASSWORD, password: process.env.POSTGRES_PASSWORD,
database: process.env.POSTGRES_DATABASE, database: process.env.POSTGRES_DATABASE,
certificate: process.env.POSTGRES_SSL_CERT, certificate: process.env.POSTGRES_SSL_CERT,