mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
13 lines
432 B
Bash
Executable file
13 lines
432 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
# This script uses a Dockerfile that takes advantage of docker volume mounts,
|
|
# And runs on an ubuntu image. A little faster for development than the other
|
|
# script
|
|
|
|
mkdir -p volumes/pictrs
|
|
sudo chown -R 991:991 volumes/pictrs
|
|
sudo docker-compose down
|
|
sudo docker build ../../ --file ../dev/volume_mount.dockerfile -t lemmy-dev:latest
|
|
sudo docker-compose pull --ignore-pull-failures || true
|
|
sudo docker-compose up
|