mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
9ac13a0891
* Fixing docker dev build. * Remove volume mount files. * Fixing pictrs. * Addressing PR comments.
10 lines
254 B
Bash
Executable file
10 lines
254 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# 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.
|
|
|
|
set -e
|
|
|
|
mkdir -p volumes/pictrs
|
|
sudo chown -R 991:991 volumes/pictrs
|
|
sudo docker-compose up -d --build
|