Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
FROM postgres:latest
|
3 |
|
4 |
# Environment variables for PostgreSQL setup
|
5 |
-
ENV POSTGRES_DB=mydatabase
|
6 |
-
ENV POSTGRES_USER=myuser
|
7 |
-
ENV POSTGRES_PASSWORD=mypassword
|
8 |
|
9 |
# Copy the custom PostgreSQL configuration file
|
10 |
COPY postgresql.conf /etc/postgresql/postgresql.conf
|
|
|
2 |
FROM postgres:latest
|
3 |
|
4 |
# Environment variables for PostgreSQL setup
|
5 |
+
ENV POSTGRES_DB='mydatabase'
|
6 |
+
ENV POSTGRES_USER='myuser'
|
7 |
+
ENV POSTGRES_PASSWORD='mypassword'
|
8 |
|
9 |
# Copy the custom PostgreSQL configuration file
|
10 |
COPY postgresql.conf /etc/postgresql/postgresql.conf
|