poppastring, (edited ) to random
@poppastring@dotnet.social avatar

desktop is now available on Arm64 Windows

session recording is available now!

https://build.microsoft.com/en-US/sessions/9d806202-be61-4b5d-ba0d-59ecfcaf0482?source=sessions

adminmagazine, to aitools
@adminmagazine@hachyderm.io avatar

In this free focus guide, we take you inside the #Docker toolset and show you how to quickly and consistently build secure containers https://mailchi.mp/admin-magazine.com/docker-focus-guide
#containers #SoftwareDevelopment #tools #automation #security #applications #OpenSource #Kubernetes

wloczykij, to random Polish

Są tu spece od Dockera? Próbuję uruchomić kontener Dockera używają Podmana (https://github.com/TechnitiumSoftware/DnsServer/blob/master/CHANGELOG.md), ale utknąłem. Po wielu próbach, kombinowaniu, aktualizacji setek programów, utknąłem na niemożności uruchomienia kontenera, bo twierdzi, że port 53/tcp jest w użyciu. Zrobiłęm już chyba wszystko, co mi wpadło do głowy, czyli wyłączenie systemd, wyłączenie nasłuchiwania przez systemd na porcie 53 i nic to nie daje. Co ciekawe, netstat nie pokazuje portu 53 jakoby był w użyciu, więc nie wiem nawet, jaki program może tego używać. Co ciekawe, jak wziąłem nmapa z innego hosta, to pokazuje, ze port 53 jest zamkniety, wiec cos tam nasluchuje, ale nie wiem co.
Podobno podman używa jakiegoś własnego serwera DNS do zarządzania siecią między kontenerami, ale nie ogarniam tego, a i nie wiem, czy tu może być problem. Poza tym serwerem podmana, nie przychodzi mi juz nic do glowy.

Macie jakiś pomysł, jak to rozwiązać?

#Podman
#docker
#kontenery
#containers
#networks
#net
#dns
#dnsServer
#port53
#error

wloczykij,

@centopus
Znalazłem tą stronę
https://github.com/containers/podman/blob/main/docs/tutorials/rootless_tutorial.md
Sekcja: User Configuration Files

Wg tego, jedyne co zostało, to katalog /run/user/XXX, choć pewnie po usunięciu usera i restarcie, nic nie pozostanie.

Chyba nie zdążyłem zbyt wiele namieszać.

Natomiast, jeśli chodzi o czyszczenie kontenerów, obrazów itp, to znalazłem taką komendę

podman system prune --all --force && podman rmi --all

Deleted Containers
52cb766ac84abcc2e0e72b9c2a378622b3d627b4dd7c28464821c0a2448da7b7
Deleted Images
d7ec3f033a91384a3daa53b05a8325cd09ead6cf5b4bf84e66017bf16029c77f
Deleted Networks
technitium_dns_server_default
Total reclaimed space: 274.5MB

#docker
#podman
#byeByePodman

wloczykij,

@centopus
Jakiś czas temu zaczałem używać komendy
make localmodconfig
która wycina zbędne moduły. Niestety, ale czasami wycina za dużo i trzeba się bawić potem, więc kernel ma sporo do tego.
Normalnie kernel z kernel.org ma wrzucone mnostwo zbednych modulow i po zbudowaniu, w katalogu /lib/modules/ jest sporo katalogów które zajmują po kilka gigabajtów. Po użyciu tej komendy, katalog z modułami jądra zmniejsza się do kilkudziesięciu megabajtów (czasami kilkaset), więc jest to spora różnica.

Co do kernela i dockera, to znalazłem skrypt
https://raw.githubusercontent.com/moby/moby/master/contrib/check-config.sh
który sprawdza moduły, które są potrzebne do działania dockera. W moim przypadku, marudził, że nie może utworzyć łańcucha DOCKER. Po zaznaczeniu wszystkich opcji, które wskazał ten skrypt, docker ruszył. Niestety, ale po majstrowaniu z kernelem, przestało mi działać jedno urządzeniu i teraz z tym się bawię. Dodatkowo, nad ranem kernel zaliczył zwiechę. Nie jest to ciekawe.

Co do portu, to najwyraźniej przy instalacji dockera, zainstalował się dnsmasq i to on blokował port53.

Na obecną chwilę, wydaje się, że docker działa, ale szczerze mówiąc, nie testowałem go za dużo, bo mam teraz na głowie próby uruchomienia tego urządzenia. Mam nadzieję, że nic innego nie skopało się.

Dam znać, jeśli się okaże, że docker znowu marudzi.
Co do tego urządzenia, to jeśli nic nie poradzę, to pewnie zacznę kolejny wątek i może ktoś pomoże.

#linux
@linux_pl
#linux_kernel
#kernel
#docker

leanpub, to python
@leanpub@mastodon.social avatar
kfdm, to random
@kfdm@social.tsun.co avatar

While it's nice to have a CI built in, I can't help but think GitHub actions is some kind of extension of Cthulhu.

#docker of course has its own problems, but I feel like @WoodpeckerCI with my @forgejo instance is easier to grok.

ramikrispin, to python
@ramikrispin@mstdn.social avatar

Opened my Monday on debugging/fighting Python dependencies on Docker image, how is your Monday so far? 😅

Gif credit: Giphy

arn_fai, to accessibility French
@arn_fai@toot.aquilenet.fr avatar

Pour cette 13ème édition de la journée mondiale de sensibilisation à l'accessibilité , ARN, @hackstub et le groupe a11y-libre, propose à toutes les personnes qui pratiquent la ligne de commande, un hackaton « asynchrone » sur le thème « ligne de commande et cécité » !

Vous avez jusqu'au 31 mai, pour envoyer vos contributions. Il y a de nombreux lots à gagner.

https://arn-fai.net/fr/blog/shell-accessible

arn_fai,
@arn_fai@toot.aquilenet.fr avatar

Notre pour rendre les shells accessibles est en cours jusqu'au 31 mai, nous publierons ici quelques contributions chaque jour.

Xogium propose des alias qui désactivent les barres de progressions sur les commandes et () car ces 2 commandes détournent des caractères brailles pour l'affichage de la barre...

Voilà qui améliore effectivement l'accessibilité de ces 2 commandes. Il y en a probablement d'autres dans le même genre.

SebastianM6L, to jenkins
@SebastianM6L@mastodon.social avatar

Anyone had an issue with from django.test import Client causing a high memory usage in a docker container?

I run the tests in a pipeline using a #jenkins agent in #docker.

When this test runs:

def test_login_user(self):  
 c = Client()  
 response = c.post('/user/login/', {'email': 'test1@test.de', 'password': 'test123'})  
self.assertEqual(response.status_code, 302)  

The memory usage goes thru the roof. Literally using up all memory until it crashes.

#django #pytest

mobileatom, to Symfony
@mobileatom@flipboard.com avatar

How to start a Symfony 7 application with Docker without having PHP locally installed on your machine. #symfony #docker

https://dev.to/gmurambadoro/how-to-start-a-symfony-7-application-with-docker-without-having-php-locally-installed-on-your-machine-28h2?utm_source=flipboard&utm_medium=activitypub

Posted into SYMFONY FOR THE DEVIL @symfony

wloczykij, to linux Polish

Mamy tu jakiś speców od Dockera?
Próbuję skonfigurować dockera używając podmana i udało mi się uruchomić kontener i podpiąć katalog z hosta do kontenera, ale sieci nie ogarniam.
Kontener jest uruchomiony na zwyklym uzytkowniku na serwerze. Działa dostęp do DNS i webowki z laptopa, ale z androida juz nie i nie mam pojecia co jest. Jak zmieniam dns na telefonie, to wifi krzyczy, ze niema neta.
Ta adresacja takze jest dla mnie jakas dziwna. LAN ma adresacje 192.168.X.X, a kontener ma siec 10.X.X.X.

Juz chyba wszystkiego probowalem. Wylaczylem firewalla na serwerze i chyba wszystko co blokuje reklamy na androidzie, ale nadal dupa.

Jakby kogos interesowalo, to probuje skonfigurowac "Technitium DNS Server"










leanpub, to devops
@leanpub@mastodon.social avatar

Docker Deep Dive: Zero to Docker in a single book! https://leanpub.com/dockerdeepdive by Nigel Poulton is the featured book on the Leanpub homepage! https://leanpub.com

symfonystation, to php
@symfonystation@newsletter.mobileatom.net avatar
atareao, to mastodon Spanish
@atareao@mastodon.social avatar

Federación con GoToSocial en Docker n
Como levantar de forma sencilla tu propio servicio de #microblogging ligero y federar con #mastodon utilizando #gotosocial y #docker en #linux

Escucha: https://atareao.es/podcast/federacion-con-gotosocial-en-docker/
Feed: https://atareao.es/mp3-feed/

sanjaymenon, (edited ) to homelab
@sanjaymenon@mastodon.social avatar
apps, to fediverse
@apps@toot.fedilab.app avatar

has been updated to 1.2.0

  • Detects instance limits
  • Timezone is stored in session
  • Fix issues
  • Fix polls not removed when hidden
  • Three new languages (pl, uk and ru)
  • Works with PHP 8.2+ (with Symfony 7+)
  • Installation possible with

https://plan.fedilab.app/

social, to Switzerland
@social@social.diva.exchange avatar

🎉 Latest release available: v2.52.0 https://github.com/diva-exchange/i2p

Available as here: https://hub.docker.com/r/divax/i2p

🙏 😀 to devs all over the world .

🚨 Reminder: discover new validation algos at University of Applied Science, https://social.diva.exchange/@social/112435041794373888

XeroLinux, to foss
@XeroLinux@fosstodon.org avatar

My new container home page. It's called "Flame" it's so damn simple it's lovely.. Thanks to @thelinuxcast for telling about this one ;)

bradwilson, to windows
@bradwilson@mastodon.social avatar

Found my first issue with using a Dev Drive, and wanting to have access to it from WSL: apparently the way Dev Drives mount in Windows is not compatible with the WSL auto-mounting.

Why does this matter? Docker Desktop (in WSL 2 mode) can't mount a Dev Drive folder.

Do I dump WSL 2 mode for Docker? Or do I dump Dev Drive? Tough choice, but I suspect I dump the Dev Drive.

In WSL 2, /mnt/c/Dev gets an I/O error because "cannot read symbolic link".
Trying to mount C:\Dev on Docker in Windows (running in WSL 2 mode) claims it can't create /run/desktop/mnt/host/c/Dev because the file exists (but in reality, the error is that it can't read that folder from WSL).

governa, to random
@governa@fosstodon.org avatar

How to Install Tiny Tiny RSS Using #Docker on PC (Ultimate Guide)

https://linuxtldr.com/tiny-tiny-rss/

leanpub, to devops
@leanpub@mastodon.social avatar

Learn Kubernetes & Docker - .NET Core, Java, Node.JS, PHP or Python by Arnaud Weil is free with a Leanpub Reader membership! Or you can buy it for $11.99! http://leanpub.com/k8s

ramikrispin, to datascience
@ramikrispin@mstdn.social avatar

In the past few months, I created a bunch of Docker 🐳 tutorials covering random topics, from a fun setting for a Python 🐍 environment on the CLI to advanced topics such as multi-stage builds 🏗️. I organized all the tutorials under one folder, and I plan to keep updating this folder with future-related ones 😎.

Currently on my Docker tutorial TODO list:
➡️ Docker ENTRYPOINT vs CMD
➡️ Docker multi-architecture build

🔗 https://medium.com/@rami.krispin/list/docker-21408ce79e6a

Enjoy!

geekymalcolm, to random
@geekymalcolm@ioc.exchange avatar

Nice to see my #Tor snowflake docker container being useful to some people!

#docker #torsnowflake #censorship

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • kavyap
  • DreamBathrooms
  • InstantRegret
  • magazineikmin
  • osvaldo12
  • mdbf
  • Youngstown
  • cisconetworking
  • slotface
  • rosin
  • thenastyranch
  • ngwrru68w68
  • khanakhh
  • megavids
  • ethstaker
  • tacticalgear
  • modclub
  • cubers
  • Leos
  • everett
  • GTA5RPClips
  • Durango
  • anitta
  • normalnudes
  • provamag3
  • tester
  • lostlight
  • All magazines