mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-09 01:10:39 +00:00
18 lines
261 B
Bash
Executable File
Vendored
18 lines
261 B
Bash
Executable File
Vendored
#!/bin/bash
|
|
set -e
|
|
|
|
if [ "$1" = "-yarn" ]; then
|
|
pushd ../../ui/ || exit
|
|
yarn
|
|
yarn build
|
|
popd || exit
|
|
fi
|
|
|
|
pushd ../../server/ || exit
|
|
cargo build
|
|
popd || exit
|
|
|
|
sudo docker build ../../ --file Dockerfile -t lemmy-federation:latest
|
|
|
|
sudo docker-compose up
|