mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 00:39:22 +00:00
10 lines
206 B
Bash
10 lines
206 B
Bash
![]() |
#!/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
|