mirror of
https://github.com/viq/NewsBlur.git
synced 2025-04-13 09:38:09 +00:00
9 lines
206 B
Bash
Executable file
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
|