Hi, I am setting up a danish site. The word ‘sl*t’ means ‘to complete’ in danish. Whenever we make a post with that word, we get an error saying “no slurs”. And the post is not accepted.

It does not help that we have enabled NSFW in community and on the post.

Please help. Thank you :)

  • @[email protected]
    link
    fedilink
    7
    edit-2
    3 years ago
    # build the image
    docker build . -t docker/prod/Dockerfile -t your-tag
    # store to file
    docker save -o your-image.tar
    # copy to server
    scp your-image.tar server:
    # load into docker on server
    ssh server "cat your-image.tar | docker load"
    # then just change the lemmy docker tag in your docker-compose.yml, and run docker-compose up -d
    

    From memory, there are likely some typos. You can also push to a docker registry instead (like docker hub), but this seems easier.

    Edit: maybe you could add this to the documentation :)