43ae28ce2c
* First pass at building a version server container image * Actually adding the Dockerfile this branch * Add entrypoint to auto create config file
8 lines
141 B
Bash
Executable File
8 lines
141 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -f $HOME/.local/share/storj/versioncontrol/config.yaml ]; then
|
|
/app/versioncontrol setup
|
|
fi
|
|
|
|
exec /app/versioncontrol run
|