Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammadranjbarz committed Sep 25, 2022
1 parent a7d6cbf commit e5f7f5d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI/CD
on: [push]
jobs:
publish:
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/staging'
runs-on: ubuntu-latest
steps:
- name: Check out the repo
Expand Down
23 changes: 23 additions & 0 deletions README.md
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
```




0 comments on commit e5f7f5d

Please sign in to comment.