NewsBlur/docker/postgres/entrypoint.sh

10 lines
206 B
Bash
Raw Normal View History

2024-01-27 23:21:08 -05:00
#!/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