-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker image with PostgreSQL database pre-populated with ATP tennis data #337
Labels
Comments
Refreshed with 2020 data. |
"Ensure PostgreSQL port 5432 is NOT open on your machine (i.e. PostgreSQL is not running if eventually installed)" How can I check this? |
Please check if PostgreSQL service is running or not.
On Windows, check 'Services' panel.
On Linux, check 'systemctl status postgresql'.
…On Wed, Jun 29, 2022 at 2:35 AM philkim72 ***@***.***> wrote:
"Ensure PostgreSQL port 5432 is NOT open on your machine (i.e. PostgreSQL
is not running if eventually installed)"
How can I check this?
—
Reply to this email directly, view it on GitHub
<#337 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAPUVTEFRNYTVE6FZ4RMZC3VROK6NANCNFSM4KDDY2HQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Hello @mcekovic Nice work with the database. managed to get it up and running. When will it be updated with the latest statistics? Thanks |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Docker image mcekovic/uts-database with PostgreSQL database pre-populated with ATP tennis data as of season 2020:
docker run -p 5432:5432 -d --name uts-database mcekovic/uts-database
(this will take a while to download the image with data)
docker exec -it uts-database psql -U tcb
SELECT goat_rank, name, country_id, goat_points FROM player_v ORDER BY goat_points DESC NULLS LAST LIMIT 20;
docker start uts-database
--restart always
to thedocker run ...
command aboveThe text was updated successfully, but these errors were encountered: