- 17 Posts
- 43 Comments
It should be yea. Just make sure you pass the USB through (or whatever connection method) and TEST
I’ve had success using the normal apt package
Dust0741@lemmy.worldto Privacy@lemmy.ml•Is the BraX3 from braxtech.net a trustworthy investment?0·22 days agoUnfortunately you can get a secure phone OR that. No overlap.
Edit: maybe one day
Dust0741@lemmy.worldto Selfhosted@lemmy.world•Sanity check: am I crazy for wanting to wipe everything and do/learn from scratch?English0·1 month agoLet’s go!!!
Dust0741@lemmy.worldto Selfhosted@lemmy.world•Sanity check: am I crazy for wanting to wipe everything and do/learn from scratch?English0·1 month agoNot really. I also didn’t have much data in them, so I opted to start from scratch. I’d recomend searching for “service docker” to find how to run that thing in dockers compose. Then I make a folder for each thing. In my home directory, I make a new folder. Say fileBrowser. Then inside that I make
docker-compose.yml
and put the compose from the internet (if you find a docker run, you can convert it to compose via sites like composerizer). Then for config volumes I like to specify./
so it goes to the current folder. I.e../filebrowserconfig/settings.json:/settings.json
so that inside the fileBrowser folder we’re already in, it has a folder called filebrowserconfig and a file called settings.json. (note that docker tries to make folders, not files. So if the json file doesn’t already exist, it’ll make a folder named settings.json lol)
Dust0741@lemmy.worldto Selfhosted@lemmy.world•Sanity check: am I crazy for wanting to wipe everything and do/learn from scratch?English0·1 month agoThis is what I did! I’ve now migrated to my own docker-compose files.
Nipe! Not rooted. In a VM though
Not sure, but if LineageOS supports it, that should be all you need
Early alpha, but yea it’s full on Linux in Android. Quite slick
I don’t know. I think they are pretty good at managing battery, and have a new setting for maxing it out at 80% charge, but I don’t think I’d put it near anything expensive for years on end.
Yea kinda. Android is switching to quarterly releases, so my phone now says “Android 15” but this was QPR2 specifically
Hmm I was messing with its networking. Eternal vpns break stuff on GrapheneOS. Its internal IP was 192.168.0.2, and my network is different.
https://docs.docker.com/engine/install/debian/#install-using-the-repository
That’s it lol. To turn on the terminal, it’s a developer option for now, and is very alpha, just search for Linux in settings after turning on dev mode
That’s Debian in the screenshot
Oh man that’d be super cool. An ARM cluster of androids would be awesome. Battery backups built in!
Dust0741@lemmy.worldto Selfhosted@lemmy.world•Any nice playbook or tutorial to host a static website from home?English0·2 months agoYup for sure. I specifically have mine open source. I have my domain through Cloudflare so that made sense.
Dust0741@lemmy.worldto Selfhosted@lemmy.world•Any nice playbook or tutorial to host a static website from home?English0·2 months agoI know it’s not self hosting, but I went with a Hugo site hosted on Cloudflare pages. That way I don’t have to port forward or worry about uptime or security.
So my public IP address changes. Using just wireguard makes my public IP just my home’s public IP. It would be nice to be able to make it a 2-in-1 where my public IP becomes that of a paid VPN account, based on the gluetun container
Dust0741@lemmy.worldOPto Selfhosted@lemmy.world•Using Jenkins to deploy Docker containers?English0·3 months agoFair. Thank you
Dust0741@lemmy.worldOPto Selfhosted@lemmy.world•Using Jenkins to deploy Docker containers?English0·3 months agoLike what?
Makes a PR in a repo for updated versions. I.e. you have:
image: nginx:1
And it’ll make a PR for the latest versionA CI/CD tool will monitor for changes like this and redeploy.