Skip to content
Open

A #1

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/pages/Home/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const Home = () => {

return (
<div className="home">
<span className="header">User List ({pagination.total})</span>
<span className="header">la List de user ({pagination.total})</span>
<table className="table">
<thead className="thead">
<tr>
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}"
POSTGRES_DB: ${POSTGRES_DB}
volumes:
- ./docker_test_db:/var/lib/postgresql/data
- db-data:/var/lib/postgresql
healthcheck:
test: ["CMD-SHELL", "sh -c 'pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}'"]
interval: 5s
Expand All @@ -35,7 +35,7 @@ services:
build:
context: ./client
dockerfile: Dockerfile
command: bash -c "npm run preview"
command: 'bash -c "npm run preview -- --host 0.0.0.0 --strictPort"'
ports:
- "4172:4173"
depends_on:
Expand Down