Skip to content

Commit

Permalink
Docker changes
Browse files Browse the repository at this point in the history
Added:
Healthchecks
Changed Postgres to Alpine + pinned
Pinned Traefik Version
Made Env Vars easier to see + change/reference for those using their own env file.
  • Loading branch information
modem7 committed Mar 23, 2022
1 parent 884975d commit 79ddd88
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 7 deletions.
3 changes: 3 additions & 0 deletions client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,7 @@ EXPOSE 3000

ENV PORT 3000

HEALTHCHECK --interval=30s --timeout=20s --retries=3 --start-period=15s \
CMD curl -fSs 127.0.0.1:3000 || exit 1

CMD [ "pnpm", "run", "start:client" ]
9 changes: 8 additions & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,21 @@ version: '3'

services:
postgres:
image: 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
Expand Down
44 changes: 38 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,26 @@ version: '3'

services:
postgres:
image: postgres
image: postgres:14.2-alpine
container_name: postgres
ports:
- 5432:5432
env_file: .env
environment:
- POSTGRES_USER="postgres"
- POSTGRES_PASSWORD="postgres"
- POSTGRES_DATABASE="postgres"
volumes:
- 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
image: traefik:rocamadour
container_name: traefik
command:
- --providers.docker=true
Expand All @@ -25,9 +35,25 @@ services:
server:
image: amruthpillai/reactive-resume:server-latest
container_name: server
env_file: .env
environment:
- POSTGRES_HOST=postgres
- TZ="UTC"
- 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:
- traefik
- postgres
Expand All @@ -38,18 +64,24 @@ services:
- traefik.http.routers.server.middlewares=server-stripprefix
- traefik.http.middlewares.server-stripprefix.stripprefix.prefixes=/api
- traefik.http.middlewares.server-stripprefix.stripprefix.forceslash=true
restart: always

client:
image: amruthpillai/reactive-resume:client-latest
container_name: client
env_file: .env
environment:
- TZ="UTC"
- PUBLIC_URL="http://<SERVER-IP>"
- PUBLIC_SERVER_URL="http://<SERVER-IP>/api"
- PUBLIC_GOOGLE_CLIENT_ID=""
depends_on:
- traefik
- server
labels:
- traefik.enable=true
- traefik.http.routers.client.rule=Host(`<SERVER-IP>`)
- traefik.http.routers.client.entrypoints=web
restart: always

volumes:
pgdata:
3 changes: 3 additions & 0 deletions server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,7 @@ EXPOSE 3100

ENV PORT 3100

HEALTHCHECK --interval=30s --timeout=20s --retries=3 --start-period=15s \
CMD curl -fSs localhost:3100/health || exit 1

CMD [ "pnpm", "run", "start:server" ]

0 comments on commit 79ddd88

Please sign in to comment.