2019-08-22 04:09:46 +00:00
|
|
|
#!/bin/sh
|
2020-11-23 15:59:06 +00:00
|
|
|
|
|
|
|
# This script uses a docker file that builds with musl, and runs on linux alpine
|
|
|
|
# Its a bit slower for development than the volume mount.
|
|
|
|
|
2020-06-12 13:29:50 +00:00
|
|
|
set -e
|
|
|
|
|
2020-10-23 17:14:30 +00:00
|
|
|
mkdir -p volumes/pictrs
|
2020-08-31 18:39:01 +00:00
|
|
|
sudo chown -R 991:991 volumes/pictrs
|
2022-10-21 15:13:24 +00:00
|
|
|
sudo docker-compose up -d --build
|