Linuxoid
Matrix - @saint:group.lt
i am all for normalizing raiding ambassies for [put the cause you support] as well
woah, so nothing is sacred now? 😱🤔😐
lemmy ;)
we don’t. also check this out - https://en.wikipedia.org/wiki/Solipsism
this is very simple solution i have used to clip entries in: https://github.com/blinkinglight/go-journal2
pricing changes, i.e. - removing free tier and increasing other plan prices.
probably could fit into fly.io free tier. also as others have mentioned - oracle oci provides a nice free vm, which can be shut off if usage of resources is low, but you can workaround it by increasing a volume a bit more than free tier allows and pay something like a 1-2$ for it monthly.
Ages ago there was such a tool - Webalizer and everybody was using it :) not anymore…
using mostly operator from percona for kubernetes, sometimes just a simple deployment. Running postgresql for Lemmy from docker-compose as a container.
I use https://www.talkwalker.com/alerts to setup notifications via RSS on keywords that are interesting to me.
hi,
i am using this
root@instance-20211112-2005:/opt/lemmy/lemmy/docker# cat Dockerfile.arm64
FROM rust:1.70.0 as builder
WORKDIR /app
COPY . .
# This can be set to release using --build-arg
ARG RUST_RELEASE_MODE="debug"
COPY . .
# Build the project
# Debug mode build
RUN --mount=type=cache,target=/app/target \
if [ "$RUST_RELEASE_MODE" = "debug" ] ; then \
echo "pub const VERSION: &str = \"$(git describe --tag)\";" > "crates/utils/src/version.rs" \
&& cargo build \
&& cp ./target/$RUST_RELEASE_MODE/lemmy_server /app/lemmy_server; \
fi
# Release mode build
RUN \
if [ "$RUST_RELEASE_MODE" = "release" ] ; then \
echo "pub const VERSION: &str = \"$(git describe --tag)\";" > "crates/utils/src/version.rs" \
&& cargo build --release \
&& cp ./target/$RUST_RELEASE_MODE/lemmy_server /app/lemmy_server; \
fi
FROM debian:bullseye-slim
RUN apt-get update && apt-get install -y libpq5 ca-certificates && rm -rf /var/lib/apt/lists/*
COPY --from=builder /app/lemmy_server /app/lemmy
CMD ["/app/lemmy"]
Also Lemmy developers are working on cross build - so it should be available in the future I hope :)
i have not used NixOS yet, not sure how easy to setup it on Oracle OCI, but i guess you will do fine ;)
it works fine, depending on popularity of your instance - you might have to add more resources in the future.
as for aarch64 - there are docker images available for lemmy and lemmy-ui
a source code of a game ;))