6 lines
89 B
Bash
6 lines
89 B
Bash
#!/bin/sh
|
|
set -e
|
|
mkdir -p /data/db
|
|
chown -R nextjs:nodejs /data/db
|
|
exec gosu nextjs "$@"
|