-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
questionUsability question, not directly related to an error with the imageUsability question, not directly related to an error with the image
Description
Per the write-up here I should be able to extend the image to init the database on startup. No matter what I do I can't seem to be able to run this init script. According to the logs script starts and all instructions get executed, but there is nothing in the final database once I connect there.
Here is the example:
docker-compose.yaml:
services:
nec-postgres:
image: nec-postgres
ports:
- "5432:5432"
networks:
- smdr-network
volumes:
- "pgdata:/var/lib/postgresql/data"
volumes:
pgdata:
Dockerfile:
FROM postgres:10.4-alpine
ENV POSTGRES_USER=user
ENV POSTGRES_PASSWORD=pass
ENV POSTGRES_DB=db
COPY *.sql /docker-entrypoint-initdb.d/
One of the SQL scripts (vetted):
CREATE TABLE users(
id bigserial PRIMARY KEY NOT NULL,
name TEXT NOT NULL
);
create table account(
id bigserial PRIMARY KEY NOT NULL,
user_id bigserial NOT NULL,
balance numeric(15,6)
);
ALTER TABLE account
ADD CONSTRAINT user_id_fkey
FOREIGN KEY (user_id)
REFERENCES users(id);
Build happens without any problems and once I have it done I can see the startup log:
The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.
The database cluster will be initialized with locale "en_US.utf8".
The default database encoding has accordingly been set to "UTF8".
The default text search configuration will be set to "english".
Data page checksums are disabled.
fixing permissions on existing directory /var/lib/postgresql/data ... ok
creating subdirectories ... ok
selecting default max_connections ... 100
selecting default shared_buffers ... 128MB
selecting dynamic shared memory implementation ... posix
creating configuration files ... ok
running bootstrap script ... ok
performing post-bootstrap initialization ... ok
syncing data to disk ... ok
WARNING: enabling "trust" authentication for local connections
You can change this by editing pg_hba.conf or using the option -A, or
--auth-local and --auth-host, the next time you run initdb.
Success. You can now start the database server using:
pg_ctl -D /var/lib/postgresql/data -l logfile start
waiting for server to start....2018-06-05 16:00:25.543 UTC [37] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2018-06-05 16:00:25.560 UTC [38] LOG: database system was shut down at 2018-06-05 16:00:25 UTC
2018-06-05 16:00:25.566 UTC [37] LOG: database system is ready to accept connections
done
server started
CREATE DATABASE
CREATE ROLE
/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/1_database.sql
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
ALTER TABLE
ALTER TABLE
ALTER TABLE
ALTER TABLE
ALTER TABLE
ALTER TABLE
ALTER TABLE
ALTER TABLE
2018-06-05 16:00:26.551 UTC [37] LOG: received fast shutdown request
waiting for server to shut down....2018-06-05 16:00:26.555 UTC [37] LOG: aborting any active transactions
2018-06-05 16:00:26.558 UTC [37] LOG: worker process: logical replication launcher (PID 44) exited with exit code 1
2018-06-05 16:00:26.559 UTC [39] LOG: shutting down
2018-06-05 16:00:26.612 UTC [37] LOG: database system is shut down
done
server stopped
PostgreSQL init process complete; ready for start up.
2018-06-05 16:00:26.671 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432
2018-06-05 16:00:26.672 UTC [1] LOG: listening on IPv6 address "::", port 5432
2018-06-05 16:00:26.679 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2018-06-05 16:00:26.697 UTC [109] LOG: database system was shut down at 2018-06-05 16:00:26 UTC
2018-06-05 16:00:26.703 UTC [1] LOG: database system is ready to accept connections
Once you connect to the database you see empty table:
Currently I have to init the database by other means, but I wanted to be able to use docker-entrypoint-initdb.d
dthree, mrrobworks and barbalex
Metadata
Metadata
Assignees
Labels
questionUsability question, not directly related to an error with the imageUsability question, not directly related to an error with the image