mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-02-01 18:02:31 -05:00
10 lines
330 B
Docker
10 lines
330 B
Docker
FROM postgres:16-alpine
|
|
|
|
# Add any custom PostgreSQL configurations if needed
|
|
COPY apps/server/Databases/AliasServerDb/postgresql.conf /etc/postgresql/postgresql.conf
|
|
|
|
# Define database name and username
|
|
ENV POSTGRES_DB=aliasvault
|
|
ENV POSTGRES_USER=aliasvault
|
|
|
|
CMD ["postgres", "-c", "config_file=/etc/postgresql/postgresql.conf"] |