Skip to content
Open
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
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ENV PGVERSION 10
ENV PGDATA /var/lib/pgsql/10/data

# Create run directory (using /run for Kaniko build)
RUN install -dv --mode=775 --owner=postgres --group=postgres /var/run/postgresql /run/postgresql
RUN install -dv --mode=775 --owner=postgres --group=postgres /run/postgresql

# Initialize the database
RUN su - postgres -c "/usr/pgsql-10/bin/pg_ctl init"
Expand Down Expand Up @@ -64,6 +64,9 @@ COPY rsyslog/owamp-syslog.conf /etc/rsyslog.d/owamp-syslog.conf

# -----------------------------------------------------------------------------

# Create httpd run directory for httpd (using /run for Kaniko build on GitLab runner)
RUN install -dv /run/httpd

RUN mkdir -p /var/log/supervisor
ADD supervisord.conf /etc/supervisord.conf

Expand Down