Skip to content
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

RHINENG-12045: replace pull from docker.io #1466

Merged
merged 2 commits into from
Aug 20, 2024
Merged
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
7 changes: 4 additions & 3 deletions conf/database.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
POSTGRES_USER=admin
POSTGRES_PASSWORD=passwd
POSTGRES_DB=patchman
POSTGRESQL_USER=admin
POSTGRESQL_PASSWORD=passwd
POSTGRESQL_DATABASE=patchman
PGDATA=/var/lib/pgsql/data
2 changes: 1 addition & 1 deletion dev/database/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/postgres:16.1
FROM quay.io/cloudservices/postgresql-rds:16-4649c84

ADD /dev/database/init.sh /docker-entrypoint-initdb.d/

Expand Down
2 changes: 1 addition & 1 deletion dev/kafka/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/confluentinc/cp-kafka
FROM quay.io/psegedy/cp-kafka:7.7.0

ADD /dev/kafka/entrypoint.sh /app/entrypoint.sh
ADD /dev/kafka/setup.sh /app/setup.sh
Expand Down
3 changes: 1 addition & 2 deletions docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ services:
context: .
dockerfile: dev/database/Dockerfile
image: patchman-engine-db
command: 'postgres -c config_file=/opt/app-root/src/postgresql-cfg/custom.conf'
volumes:
- db-data:/var/lib/postgresql/data
- db-data:/var/lib/pgsql/data
ports:
- 5433:5432
env_file:
Expand Down
1 change: 0 additions & 1 deletion docker-compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ services:
context: .
dockerfile: dev/database/Dockerfile
image: patchman-engine-db
command: 'postgres -c config_file=/opt/app-root/src/postgresql-cfg/custom.conf'
ports:
- 5433:5432
env_file:
Expand Down
3 changes: 1 addition & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ services:
context: .
dockerfile: dev/database/Dockerfile
image: patchman-engine-db
command: 'postgres -c config_file=/opt/app-root/src/postgresql-cfg/custom.conf'
volumes:
- db-data:/var/lib/postgresql/data
- db-data:/var/lib/pgsql/data
ports:
- 5433:5432
env_file:
Expand Down
Loading