mirror of
https://github.com/gogs/gogs.git
synced 2026-01-14 11:22:19 +01:00
9 lines
164 B
Bash
9 lines
164 B
Bash
#!/bin/sh
|
|
set -ex
|
|
|
|
# Create data directories at runtime (needed when /data is a mounted volume)
|
|
mkdir -p /data/gogs /data/git
|
|
|
|
# Execute the main command
|
|
exec "$@"
|