#docker
Explore tagged Tumblr posts
grif-hawaiian-rolls · 14 days ago
Text
Tumblr media
sometimes u just get so filled w thoughts about a pair of characters u gotta just go bonkers ya know
91 notes · View notes
alpine-official · 6 months ago
Text
i love being shoved into a tiny little docker container or a shitty RP2040 microcontroller :33 please use me in a shitty, tiny embedded system like the naughty little distro i am ><
178 notes · View notes
fedora-official · 2 months ago
Text
who up composing they docker
59 notes · View notes
openmediavault-official · 6 months ago
Text
Tumblr media
openmediavault-compose is the cure
117 notes · View notes
nixcraft · 5 months ago
Text
64 vCPU/256 GB ram/2 TB SSD EC2 instance with #FreeBSD or Debian Linux as OS 🔥
Tumblr media
37 notes · View notes
docker-official · 4 months ago
Text
Id like to thank @debian-official, if it wasnt for them this idea wouldnt have come to me.
What projects is everyone working on? Im curious and want to see what the IT community is bashing their heads against.
Ill start, I am setting up a personal website for my homelab! The site is through nginx. I dont have any experience with html or css or anything like that and for me its a fun little challenge. It has also allowed my to get my "cdn" going again which I am quite pleased about ^~^
37 notes · View notes
hayacode · 6 months ago
Text
Hello everyone ✨
So as you know I have been applying for jobs for a few reasons ..
- I want to see what they want
- How interviews goes in my country
- What skills are important
And stuff like that, and now after I did that.. I want to start a new plan/goal (for 6 weeks or maybe more if I get a job)
1- Reviewing JavaScript
2- Back to study Python
3- Do practice every day for both of them
4- Learn how to use streamlit and make at least one project.
5- Practice my Bootstrap (my current workshop)
6- Learning about React (only basics info before my main workshop start on 22 July)
You may be wondering “why did I choose streamlit (that focused on data) even though there are much better skills to focus on as a frontend developer?”
Tumblr media
The reason for that is, my dream job needs these.
And I plan to focus on them and apply for it 👩🏻‍💻
Worst case scenario is me never getting the job but at least I get the skills and practice.
Please wish me luck, and I will definitely update you on it later ✨
If you have any advice for me, please let me know. I love hearing your thoughts 🤍
Ps. I will not learn Docker because from what I saw. I can’t really learn it with small projects (which is what I mostly do, so I will leave it out for now)
36 notes · View notes
utopicwork · 3 months ago
Text
This tool rules, it automatically converts docker start up commands into docker compose yml, used to waste a lot of time doing this manually
13 notes · View notes
gobusto · 5 months ago
Text
Tumblr media
Half Life running under WINE via a VNC connection to a Docker container running Alpine Linux
5 notes · View notes
jestandvex · 8 months ago
Text
for all my computer science critters out there, "unfinished vidulch" sounds like the default name on a docker container
10 notes · View notes
jointhefediverse · 16 days ago
Text
Tumblr media
WE LOVE TO SEE IT! Friendica's official [virtual image] trending on Docker. 🥹🐳
(Not to excuse Home Assistant receiving the first spot. 🏡🎖️ It's a widely recognized and powerful open-source automation network for your smart-home. In competition with other integrated hub systems, notably Alexa or Google Assistant, aside from being FOSS: it's privacy-oriented and far more intuitive/extensive with its capabilities.)
2 notes · View notes
fedora-official · 2 months ago
Text
crying and shaking rn because @docker-official won't detect the env variable i changed in my docker-compose.yml . i cleared everything i could think of and it's still there
53 notes · View notes
openmediavault-official · 6 months ago
Text
Who needs Portainer when you can have openmediavault-compose™?
7 notes · View notes
nixcraft · 10 months ago
Text
I have been using Btrfs for several months, and it has been stable enough for me. It is a file system that can be used as a storage driver for Linux containers like LXD, Incus, or Docker. If you want to install Btrfs support on Debian Linux and format & mount a disk drive, see my tutorial
10 notes · View notes
blubberquark · 3 months ago
Text
Nothing encapsulates my misgivings with Docker as much as this recent story. I wanted to deploy a PyGame-CE game as a static executable, and that means compiling CPython and PyGame statically, and then linking the two together. To compile PyGame statically, I need to statically link it to SDL2, but because of SDL2 special features, the SDL2 code can be replaced with a different version at runtime.
I tried, and failed, to do this. I could compile a certain version of CPython, but some of the dependencies of the latest CPython gave me trouble. I could compile PyGame with a simple makefile, but it was more difficult with meson.
Instead of doing this by hand, I started to write a Dockerfile. It's just too easy to get this wrong otherwise, or at least not get it right in a reproducible fashion. Although everything I was doing was just statically compiled, and it should all have worked with a shell script, it didn't work with a shell script in practice, because cmake, meson, and autotools all leak bits and pieces of my host system into the final product. Some things, like libGL, should never be linked into or distributed with my executable.
I also thought that, if I was already working with static compilation, I could just link PyGame-CE against cosmopolitan libc, and have the SDL2 pieces replaced with a dynamically linked libSDL2 for the target platform.
I ran into some trouble. I asked for help online.
The first answer I got was "You should just use PyInstaller for deployment"
The second answer was "You should use Docker for application deployment. Just start with
FROM python:3.11
and go from there"
The others agreed. I couldn't get through to them.
It's the perfect example of Docker users seeing Docker as the solution for everything, even when I was already using Docker (actually Podman).
I think in the long run, Docker has already caused, and will continue to cause, these problems:
Over-reliance on containerisation is slowly making build processes, dependencies, and deployment more brittle than necessary, because it still works in Docker
Over-reliance on containerisation is making the actual build process outside of a container or even in a container based on a different image more painful, as well as multi-stage build processes when dependencies want to be built in their own containers
Container specifications usually don't even take advantage of a known static build environment, for example by hard-coding a makefile, negating the savings in complexity
5 notes · View notes
linuxtldr · 5 months ago
Text
2 notes · View notes