diff --git a/.env.example b/.env.example index d6412fec..f5b7cde3 100644 --- a/.env.example +++ b/.env.example @@ -26,7 +26,7 @@ DEL_INSTANCE=false # Provider: postgresql | mysql DATABASE_PROVIDER=postgresql -DATABASE_CONNECTION_URI='postgresql://user:pass@localhost:5432/evolution?schema=public' +DATABASE_CONNECTION_URI='postgresql://user:pass@postgres:5432/evolution?schema=public' # Client name for the database connection # It is used to separate an API installation from another that uses the same database. DATABASE_CONNECTION_CLIENT_NAME=evolution_exchange diff --git a/docker-compose.yaml b/docker-compose.yaml index b286919c..9a60a9a9 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -34,12 +34,15 @@ services: image: postgres:15 networks: - evolution-net - command: ["postgres", "-c", "max_connections=1000"] + command: ["postgres", "-c", "max_connections=1000", "-c", "listen_addresses=*"] restart: always ports: - 5432:5432 environment: - - POSTGRES_PASSWORD=PASSWORD + - POSTGRES_USER=user + - POSTGRES_PASSWORD=pass + - POSTGRES_DB=evolution + - POSTGRES_HOST_AUTH_METHOD=trust volumes: - postgres_data:/var/lib/postgresql/data expose: