Shaarli NicolasMD !
Tag cloud
Picture wall
Daily
Plugins
  • ► Play Videos
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
36 results tagged docker  ✕
GitHub - milesmcc/shynet: Modern, privacy-friendly, and detailed web analytics that works without cookies or JS. https://github.com/milesmcc/shynet
21/12/2025 20:20:39
thumbnail

Modern, privacy-friendly, and detailed web analytics that works without cookies or JS. - milesmcc/shynet

analytics web docker stats
Home | LinuxServer.io https://www.linuxserver.io/
03/12/2025 18:35:49
docker selfhosted
https://www.reddit.com/r/truenas/s/xYZpmGMHji https://www.reddit.com/r/truenas/s/xYZpmGMHji
18/11/2025 23:25:05
cloud docker
https://github.com/fosrl/pangolin https://github.com/fosrl/pangolin
18/11/2025 23:24:42
thumbnail
docker server identity
Note: Docker efimero debian /shaare/Rx0gnw
03/09/2025 18:47:31

bash$ docker run --rm -it debian:stable-slim bash

que hace:
• --rm: elimina el contenedor al salir.
• -it: modo interactivo con TTY.
• bash: abre la shell (podés usar sh si preferís).

Siempre trae la última imagen:

docker run --rm -it --pull=always debian:stable-slim bash

Apple Silicon, forzar arquitectura:

docker run --rm -it --platform=linux/arm64/v8 debian:stable-slim bash

Montar tu directorio actual dentro del contenedor (para probar cosas sobre tus archivos):

docker run --rm -it -v "$PWD":/work -w /work debian:stable-slim bash

Aún más “efímero/limpio” (sin escribir al FS del contenedor):

docker run --rm -it \
  --read-only \
  --tmpfs /tmp \
  --tmpfs /run \
  -v "$PWD":/work:ro -w /work \
  debian:stable-slim bash

Entrar como usuario no-root (simple):

docker run --rm -it -u $(id -u):$(id -g) -v "$PWD":/work -w /work debian:stable-slim bash

Instalar cositas:

apt-get update && apt-get install -y curl git vim htop zsh && rm -rf /var/lib/apt/lists/*

Con nombre (por si querés docker exec desde otra terminal mientras está vivo):

docker run --rm -it --name debtest debian:stable-slim bash

en otra terminal:

docker exec -it debtest bash
docker debian
linkding https://github.com/sissbruecker/linkding
29/07/2025 08:56:07
thumbnail
shaarli docker python
Docker Macos https://christitus.com/docker-macos/
27/10/2024 23:00:49
docker macintosh os ios
GitHub - sickcodes/Docker-OSX: Run macOS VM in a Docker! Run near native OSX-KVM in Docker! X11 Forwarding! CI/CD for OS X Security Research! Docker mac Containers. https://github.com/sickcodes/Docker-OSX
18/08/2024 22:54:28
thumbnail
docker apple ios os emulator
abiosoft/colima: Container runtimes on macOS (and Linux) with minimal setup https://github.com/abiosoft/colima
11/05/2024 08:44:13
thumbnail
docker
Running in Docker — Locust 2.27.0 documentation https://docs.locust.io/en/stable/running-in-docker.html
08/05/2024 12:21:17
docker server performance
docker-smtp/stretch/Dockerfile at master · BytemarkHosting/docker-smtp https://github.com/BytemarkHosting/docker-smtp/blob/master/stretch/Dockerfile
05/05/2024 21:22:21
thumbnail
docker debian smtp exim
How to add plugins via Docker? · Issue #1372 · shaarli/Shaarli https://github.com/shaarli/Shaarli/issues/1372#issuecomment-546341830
24/11/2020 12:44:45
thumbnail
shaarli docker
Set up PhpStorm to use PHP with PHPUnit and xDebug in Docker https://www.reddit.com/r/PHP/comments/j8pdpn/set_up_phpstorm_to_use_php_with_phpunit_and/?utm_medium=android_app
10/10/2020 15:27:09
php xdebug docker
Automatic SSL with Let's Encrypt & Nginx - DEV Community 👩‍💻👨‍💻 https://dev.to/adamkdean/automatic-ssl-with-let-s-encrypt-nginx-4nfk
18/02/2020 00:08:10
thumbnail
docker nginx https
Fluent Bit: Flexible Logging in Kubernetes | Linux.com | The source for Linux information https://www.linux.com/blog/event/kubecon/2018/4/fluent-bit-flexible-logging-kubernetes
01/05/2018 12:29:26
docker
Fluent Bit: Flexible Logging in Kubernetes | Linux.com | The source for Linux information https://www.linux.com/blog/event/kubecon/2018/4/fluent-bit-flexible-logging-kubernetes
01/05/2018 12:29:26

Logging by nature is complex and in containerized environments there are new challenges that need to be addressed. In this article we will describe the current status of the Fluentd Ecosystem and how Fluent Bit (a Fluentd sub-project) is filling the gaps in cloud native environments. Finally we will do a global overview of the new Fluent Bit v0.13 release and its major improvements for Kubernetes users.

docker
ssl - Add self signed certificate to ubuntu for use with curl - Stack Overflow https://stackoverflow.com/a/6602174/1504286
27/09/2017 11:24:20
ssl certificado https apache nginx docker
docker/dockercraft: Docker + Minecraft = Dockercraft https://github.com/docker/dockercraft
01/03/2017 13:47:49
docker minecraft
Note: MySQL Docker PHP /shaare/CPRJUQ
08/02/2017 15:31:11
version: '2'
services:
  nginx:
    image: shippingdocker/nginx:1.2
    ports:
     - "80:80"
    volumes:
     - .:/var/www/html
    networks:
     - appnet
  php:
    image: shippingdocker/php:1.2
    volumes:
     - .:/var/www/html
    networks:
     - appnet
  redis:
    image: redis:alpine
    networks:
     - appnet
  db:
    image: mysql:latest
    ports:
     - "3306:3306"
    environment:
      MYSQL_ROOT_PASSWORD: 123456
      MYSQL_USER: dev
      MYSQL_PASSWORD: 123456
      MYSQL_DATABASE: myapp
    networks:
     - appnet
  mail:
    image: mailhog/mailhog:latest
    ports:
     - "9025:8025"
    networks:
     - appnet
networks:
  appnet:
    driver: "bridge"
volumes:
  data:
    driver: "local"
docker mysql php laravel nginx
Start containers automatically - Docker https://docs.docker.com/engine/admin/host_integration/
24/01/2017 09:57:36

auto start autostart

docker server
pms-docker/README.md at master · plexinc/pms-docker · GitHub https://github.com/plexinc/pms-docker/blob/master/README.md
24/12/2016 19:18:11

pms-docker - Plex Media Server Docker repo, for all your PMS docker needs.

docker
Top 5 Reasons to Love Kubernetes | Linux.com | The source for Linux information https://www.linux.com/blog/top-5-reasons-love-kubernetes
25/10/2016 08:34:52

At LinuxCon Europe in Berlin I gave a talk about Kubernetes titled "Why I love Kubernetes? Top 10 reasons." The response was great, and several folks asked me to write a blog about it. So here it is, with the first five reasons in this article and the others to follow. As a quick introduction, Kubernetes is "an open-source system for automating deployment, scaling and management of containerized applications" often referred to as a container orchestrator.

docker
php-app/docker-compose.yml at master · shipping-docker/php-app https://github.com/shipping-docker/php-app/blob/master/docker-compose.yml
18/10/2016 13:10:50
docker php
.NET - Powerful Open Source Development - Visual Studio http://
12/10/2016 03:55:52

https://www.microsoft.com/net/core#docker
https://code.visualstudio.com/download
https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp

dotnet ide docker
Tutorial: Deploy an ASP.NET Core Application on Linux with Docker - Stormpath User Identity API https://stormpath.com/blog/tutorial-deploy-asp-net-core-on-linux-with-docker
12/10/2016 03:52:25
dotnet linux docker
Hosting .NET Core on Linux with Docker - A Noob's guide http://blog.scottlogic.com/2016/09/05/hosting-netcore-on-linux-with-docker.html
12/10/2016 03:52:11
docker dotnet linux
LaraDock/laradock: Like Laravel Homestead but for Docker instead of Vagrant. https://github.com/LaraDock/laradock
31/08/2016 11:33:44
docker laravel
Docker and Serverless? Buzzword Stew! -- Serverless Code https://serverlesscode.com/post/docker-isnt-serverless/
25/08/2016 11:32:11
docker
Tutorial: Migrating Existing Services to Docker, Part One - Teamspeak3 https://blog.akpwebdesign.com/2016/08/11/migrating-services-to-docker-pt-1/
25/08/2016 00:22:26

Docker can be extremely useful, if you know what you're doing with it. In this series, I'll show you how to effectively use it to straighten out your stack.

nginx docker
CoreOS is Linux for Massive Server Deployments https://coreos.com/
29/06/2016 23:40:53
linux docker
How to Route Traffic through a Tor Docker container https://blog.jessfraz.com/post/routing-traffic-through-tor-docker-container/
24/06/2016 10:13:26
docker
How to Setup DockerUI - a Web Interface for Docker http://linoxide.com/linux-how-to/setup-dockerui-web-interface-docker/
17/02/2016 09:18:00
docker web
Deploy together. Fearlessly. https://dockbit.com/
20/01/2016 16:35:26
docker server
How To Optimize Nginx Configuration | DigitalOcean https://www.digitalocean.com/community/tutorials/how-to-optimize-nginx-configuration
14/12/2015 10:10:43
nginx docker
Where are Docker images stored? - Lounge Scene http://blog.thoward37.me/articles/where-are-docker-images-stored/
14/12/2015 09:47:00
docker
Get started with containers https://docs.docker.com/v1.8/articles/basics/
11/12/2015 18:54:15
docker
3765 links, including 258 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn