Spaces:
Sleeping
Sleeping
File size: 262 Bytes
a1624bc 98dbe3e 05c6af1 3998fe4 a1624bc 90df87a 98dbe3e 90df87a a2d42c7 98dbe3e 3998fe4 98dbe3e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM postgres
# RUN useradd -m -u 1000 postgres
WORKDIR /app
USER root
RUN id -u postgres
RUN usermod -u 1000 postgres
RUN mkdir -p /var/lib/postgresql/data && chown -R postgres:postgres /var/lib/postgresql/data
RUN id -u postgres
USER postgres
EXPOSE 5432 |