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
page 1 / 2
35 results tagged docker  ✕
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
thumbnail
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

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
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
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
page 1 / 2
3727 links, including 251 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn