Skip to content

Commit

Permalink
ci(docker): include traefik routing and proxy to ensure server connec…
Browse files Browse the repository at this point in the history
…tions pass in local
  • Loading branch information
AmruthPillai committed Mar 12, 2022
1 parent 528ac84 commit 11cb066
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 7 deletions.
33 changes: 27 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ services:
- ./scripts/database/initialize.sql:/docker-entrypoint-initdb.d/initialize.sql
- pgdata:/var/lib/postgresql/data

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:
# Production
# image: amruthpillai/reactive-resume:server-latest
Expand All @@ -22,12 +34,18 @@ services:
container_name: server
env_file: .env
environment:
- PUBLIC_URL=http://client:3000
- PUBLIC_URL=http://localhost
- POSTGRES_HOST=postgres
ports:
- 3100:3100
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:
# Production
Expand All @@ -40,11 +58,14 @@ services:
container_name: client
env_file: .env
environment:
- PUBLIC_SERVER_URL=http://server:3100
ports:
- 3000:3000
- 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:
2 changes: 1 addition & 1 deletion server/src/health/health.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class HealthController {
return this.health.check([
() => this.db.pingCheck('database'),
() => this.http.pingCheck('app', 'https://rxresu.me'),
() => this.http.pingCheck('docs', 'https://beta.rxresu.me'),
() => this.http.pingCheck('docs', 'https://docs.rxresu.me'),
]);
}
}

0 comments on commit 11cb066

Please sign in to comment.