-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7d6cbf
commit e5f7f5d
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## Postgres givethio | ||
|
||
We needed a postgres docker image with enabled pg_cron so we wrote and publish this docker image | ||
to use it in https://github.com/Giveth/impact-graph | ||
|
||
### Usage | ||
We assumed that the **PGDATA** is `/var/lib/postgresql/data/pgdata` and the DB name is `givethio`, so if you want to use this image in | ||
docker-compose you can use something like this | ||
|
||
``` | ||
givethio-postgres: | ||
image: ghcr.io/giveth/postgres-givethio:latest | ||
restart: always | ||
environment: | ||
- POSTGRES_DB=givethio | ||
- POSTGRES_USER=yourDesiredUsername | ||
- POSTGRES_PASSWORD=yourDesiredPassword | ||
- PGDATA=/var/lib/postgresql/data/pgdata | ||
``` | ||
|
||
|
||
|
||
|