NewsBlur-viq/docker/postgres/entrypoint.sh
2024-01-27 23:24:42 -05:00

9 lines
206 B
Bash
Executable file

#!/bin/bash
# entrypoint.sh
# Create a user with the specified UID/GID
usermod -u 1000 postgres
groupmod -g 1001 postgres
# Execute the original entrypoint of the image
exec docker-entrypoint.sh postgres