# Twtxt is an open, distributed microblogging platform that # uses human-readable text files, common transport protocols, # and free software. # # Learn more about twtxt at https://github.com/buckket/twtxt # # This is hosted by a Yarn.social pod twtxt.net running yarnd 0.15.1@7fd3daed 2023-11-26T10:40:12+10:00 go1.21.4 # Learn more about Yarn.social at https://yarn.social # # nick = thewismit # url = https://twtxt.net/user/thewismit/twtxt.txt # avatar = https://twtxt.net/user/thewismit/avatar # description = husband. father. geek. # # following = ## 2021-01-18T02:42:27Z Testing 1..2..3.. 2021-01-18T02:46:26Z [Blog post #<1 https://twtxt.net/search?tag=1>](https://twtxt.net/blog/thewismit/2021/01/18/blog-post-1) 2021-01-18T03:01:07Z @ (#) hey there. Do you have any plans to support inter-pod follows? I'm thinking about using this as my blogging platform and it would be nice to be able to do that if this really takes off! 2021-01-18T03:02:47Z @ (#) I'm going to setup my own pod tomorrow and see how the install goes. 2021-01-18T03:05:06Z @ @xuu @etux (#) nice. I'll have a look through the dev docs tomorrow and learn more. Thanks! 2021-01-18T03:09:54Z So why is the mobile app called Goryon @? 2021-01-18T03:20:04Z @ (#) Why another static site generator? What are you trying to do differently? 2021-01-18T03:24:37Z @ @ (#) excellent lol! 2021-01-18T19:06:55Z @ (#) I found you via twtxt and am considering using it as my blogging/microblogging platform. But then I see what you're doing and I wonder if I should just create templates for micro/macro posts.

I suppose it depends on how much functionality I want. 2021-01-18T23:35:16Z @ Heya. Do you have a published docker image and corresponding docker-compose.yml sample config? I see that you mention running docker in the README but I'm not familiar with running it, using the extracted binary file structure. 2021-01-18T23:49:29Z @ (#<62rwtjq https://twtxt.net/search?tag=62rwtjq>) a bit. I recognize the yaml syntax from my other docker-compose files but I don't run traefik and don't know the first thing about swarms.

Can I rip out the traefik config and bind map a volume to my file system? 2021-01-18T23:57:44Z @ (#<62rwtjq https://twtxt.net/search?tag=62rwtjq>) would somethingkke this work?

```
---
version: "3.8"

services:
 twtxt:
 image: jointwt/twtxt:latest
 command: -d /data -r -s bitcask:///data/twtxt.db -u https://twtxt.net
 environment:
 - COOKIE_SECRET=PLEASE_CHANGE_ME_TO_A_64_BYTE_RANDOM_STRING
 volumes:
 - /mnt/data/twtxt:/data
 restart_policy:
 condition: on-failure

volumes:
 twtxt:
 driver: local
```
I don't know what the local driver volume is though. Never used that. 2021-01-18T23:58:16Z @ (#<62rwtjq https://twtxt.net/search?tag=62rwtjq>) that would help a lot if I'm not already close hehe 2021-01-19T00:00:42Z (#<62rwtjq https://twtxt.net/search?tag=62rwtjq>) I'd also like to run this on a different port than 8000. I already run yacht on that port. 2021-01-19T00:08:44Z @ (#<62rwtjq https://twtxt.net/search?tag=62rwtjq>) so bind a host port to container port 8000 and I'm not sure what you mean by base. 2021-01-19T16:29:24Z (#<62rwtjq https://twtxt.net/search?tag=62rwtjq>) @ how's this look?
```
---
version: "3.8"
services:
 twtxt:
 image: jointwt/twtxt:latest
 command: -d /data -r -s bitcask:///data/twtxt.db -u https://twtxt.net
 environment:
 - COOKIE_SECRET=02asr5Yg10UTJLbj6gShK5dKmR6MulYPyR3jBQjD5rou6TlW0x2tIN3gNAqzv3xV
 - BASE_URL=https://blog.thewismit.com
 - PUID=1000
 - PGID=1000
 - TZ=America/New_York
 ports:
 # - 80:80
 - 6877:443
 volumes:
 - /mnt/data/docker/twtxt/data:/data
 restart_policy:
 condition: on-failure
volumes:
 twtxt:
 driver: local
``` 2021-01-19T16:30:14Z (#<62rwtjq https://twtxt.net/search?tag=62rwtjq>) @ @ don't worry secret will be changed ;P Can you also explain what the volumes: directive does? 2021-01-19T16:55:35Z (#<62rwtjq https://twtxt.net/search?tag=62rwtjq>) @ @ Looks like docker is getting stuck at this line
```command: -d /data -r -s bitcask:///data/twtxt.db -u https://twtxt.net```
```COMMAND CREATED STATUS PORTS NAMES
23fb7b4f066a jointwt/twtxt:latest "/twtd -d /data -r -…" 2 minutes ago Restarting (2) 39 seconds ago``` 2021-01-19T17:15:01Z @ @ (#<62rwtjq https://twtxt.net/search?tag=62rwtjq>) trying to install bitcask for Ubuntu and it looks like the erlang install for Ubuntu has been permanently moved. Not sure where to go from here.
```
https://docs.riak.com/riak/kv/2.2.3/setup/installing/source/erlang.1.html#installing-on-debian-ubuntu
``` 2021-01-19T17:15:17Z @ @ (#<62rwtjq https://twtxt.net/search?tag=62rwtjq>) and then this
```
wget http://s3.amazonaws.com/downloads.riak.com/erlang/otp_src_R16B02-basho10.tar.gz
--2021-01-19 17:11:21-- http://s3.amazonaws.com/downloads.riak.com/erlang/otp_src_R16B02-basho10.tar.gz
Resolving s3.amazonaws.com (s3.amazonaws.com)... 52.217.48.214
Connecting to s3.amazonaws.com (s3.amazonaws.com)|52.217.48.214|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: unspecified
ERROR: Redirection (301) without location.
``` 2021-01-19T17:24:37Z @ @ (#<62rwtjq https://twtxt.net/search?tag=62rwtjq>) I realize that you don't control the availability of dependencies across multiple platforms. So if this means I have to host my blog with your twt.social site, can you please let me know what it would cost me per month? thx. 2021-01-19T22:12:37Z @ (#<62rwtjq https://twtxt.net/search?tag=62rwtjq>) there now 2021-01-22T19:03:30Z @ so until I can get a successfully hosted pod of my own, can I host one with you? Do you have any pricing plans worked up yet? 2021-01-22T19:13:04Z @ (#<7qloy3a https://twtxt.net/search?tag=7qloy3a>) BTW. I bypassed the proxy today with Lyse walking me through a bunch of testing steps , and it seems there's something wrong with either my docker config or potentially the image? Because I'm unable to log in directly at the IP:Pprt either. 

It can't be the image right? You have a lot of pulls that are in use? I also pulled a fresh image just to be sure. 2021-01-22T19:13:34Z @ (#<7qloy3a https://twtxt.net/search?tag=7qloy3a>) anyway it works from a built from source image but that's going to upset my entire docker and backup strategy lol 2021-01-23T00:13:08Z @ @ (#<7qloy3a https://twtxt.net/search?tag=7qloy3a>) I think the light bulb just turned on! Let's see if I can get my pod up now. 2021-01-23T01:48:41Z @ (#<7qloy3a https://twtxt.net/search?tag=7qloy3a>) ![](https://twtxt.net/media/66ZupkFPhiRGpruz5voN8C)