Merge pull request #159 from shipyardbuild/fix-postgres-init

Set an explicit username and password for the db service
This commit is contained in:
Jenny Burcio 2020-02-19 12:51:14 -08:00 committed by GitHub
commit 245c8f3aa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 36 additions and 6 deletions

View File

@ -41,6 +41,9 @@ services:
db:
image: postgres:9.4
container_name: db
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
volumes:
- "db-data:/var/lib/postgresql/data"
networks:

View File

@ -7,6 +7,9 @@ services:
- "6379:6379"
db:
image: postgres:9.4
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
ports:
- "5432:5432"
vote:

View File

@ -18,6 +18,9 @@ services:
db:
image: postgres:9.4
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
result:
build: ./result

View File

@ -43,6 +43,9 @@ services:
db:
image: postgres:9.4
container_name: db
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
volumes:
- "db-data:/var/lib/postgresql/data"
networks:

View File

@ -16,6 +16,9 @@ services:
condition: on-failure
db:
image: postgres:9.4
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
volumes:
- db-data:/var/lib/postgresql/data
networks:

View File

@ -14,6 +14,9 @@ services:
condition: on-failure
db:
image: postgres:9.4
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
volumes:
- db-data:/var/lib/postgresql/data
networks:

View File

@ -18,6 +18,11 @@ spec:
containers:
- image: postgres:9.4
name: postgres
env:
- name: POSTGRES_USER
value: postgres
- name: POSTGRES_PASSWORD
value: postgres
ports:
- containerPort: 5432
name: postgres

View File

@ -77,6 +77,10 @@ spec:
env:
- name: PGDATA
value: /var/lib/postgresql/data/pgdata
- name: POSTGRES_USER
value: postgres
- name: POSTGRES_PASSWORD
value: postgres
ports:
- containerPort: 5432
name: db

View File

@ -47,6 +47,9 @@ services:
db:
image: postgres:9.4
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
volumes:
- "db-data:/var/lib/postgresql/data"
networks:

View File

@ -24,7 +24,7 @@ io.sockets.on('connection', function (socket) {
});
var pool = new pg.Pool({
connectionString: 'postgres://postgres@db/postgres'
connectionString: 'postgres://postgres:postgres@db/postgres'
});
async.retry(

View File

@ -16,7 +16,7 @@ namespace Worker
{
try
{
var pgsql = OpenDbConnection("Server=db;Username=postgres;");
var pgsql = OpenDbConnection("Server=db;Username=postgres;Password=postgres;");
var redisConn = OpenRedisConnection("redis");
var redis = redisConn.GetDatabase();
@ -46,7 +46,7 @@ namespace Worker
if (!pgsql.State.Equals(System.Data.ConnectionState.Open))
{
Console.WriteLine("Reconnecting DB");
pgsql = OpenDbConnection("Server=db;Username=postgres;");
pgsql = OpenDbConnection("Server=db;Username=postgres;Password=postgres;");
}
else
{ // Normal +1 vote requested

View File

@ -72,7 +72,7 @@ class Worker {
while (conn == null) {
try {
conn = DriverManager.getConnection(url, "postgres", "");
conn = DriverManager.getConnection(url, "postgres", "postgres");
} catch (SQLException e) {
System.err.println("Waiting for db");
sleep(1000);