• Shaarli
  • Tag cloud
  • Picture wall
  • Daily
  • RSS
  • Login
4251 shaares
 
Filters
11 results tagged docker

Mojolicious and Docker - DEV Community

QRCode

This post plans to illustrate how you can build and dockerize and Mojolicious application and solve... Tagged with docker, perl, devops, mojolicious.

https://dev.to/dragostrif/mojolicious-and-docker-939
May 1, 2025 at 11:00:28 AM EDT *
docker mojolicious perl
FILLER

Best Practices for Docker to run SQL Server on a Mac

QRCode

Check out this consolidated list of things you can (or should) do when using Docker to run SQL Server on a Mac.

https://www.mssqltips.com/sqlservertip/8035/best-practices-for-docker-to-run-sql-server-on-a-mac/
August 7, 2024 at 6:34:00 PM EDT *
docker mssql macos
FILLER

Thomas Klausner. Deploying Perl Apps using Docker, Gitlab & Kubernetes

QRCode

PerlCon 2019 Rīga — Day 1 — 7 August 2019

https://perlcon.eu/talk/27

Some time ago we had the glorious idea to deploy our code into the cloud. The Google cloud, to be specific. This means we had to learn Kubernetes (to manage and scale our apps), Docker (to pack the apps into containers), gitlab CI (to automate the deployment process) and a whole lot more.

In this talk I'll explain the basics of Kubernetes, Docker and CI; describe how to make your app code cloud ready; and show you our current deployment pipeline.

Be prepared to see Perl, YAML, bash, Makefiles and other horrors required for smooth sailing in the clouds.

https://www.youtube.com/watch?v=Wszrg6kQzPU
May 1, 2023 at 10:57:05 AM EDT *
perl docker
FILLER

How I Reduced Docker Image Size from 1.43 GB to 22.4 MB | by Mohammad Faisal | JavaScript In Plain English | Medium

QRCode

Step 4. Multistage Build

In our previous configurations, we were copying all of our source codes into the working directory.
But it’s unnecessary as we only need the build folder to serve our website. So now we will use the concept of multi-stage build to cut down the unnecessary code and dependencies from our final image.
The configuration will look something like this.


# STAGE 1

FROM node:12-alpine AS build
WORKDIR /app
COPY package.json ./
RUN yarn  install
COPY . /app
RUN yarn build

# STAGE 2
FROM node:12-alpine
WORKDIR /app
RUN npm install -g webserver.local
COPY --from=build /app/build ./build
EXPOSE 3000
CMD webserver.local -d ./build
https://medium.com/javascript-in-plain-english/how-i-reduced-docker-image-size-from-1-43-gb-to-22-4-mb-84058d70574b
January 13, 2021 at 3:18:16 PM EST *
docker
FILLER

10 docker-compose and docker commands that are useful for active development - DEV Community 👩‍💻👨‍💻

QRCode
https://dev.to/aduranil/10-docker-compose-and-docker-commands-that-are-useful-for-active-development-22f9
September 11, 2019 at 9:38:32 AM EDT *
docker
FILLER

The Minuscule Docker Images That Could - Better Programming - Medium

QRCode

Note: Alpine images are already very small and will probably be sufficient if you care about size.

https://medium.com/better-programming/the-minuscule-docker-images-that-could-22bac9ed950b
August 22, 2019 at 9:55:29 AM EDT *
docker
FILLER

Deploying Perl Apps using Docker, Gitlab & Kubernetes

QRCode

German Perl Workshop 2019 München 2019-03-06
Thomas Klausner

https://domm.plix.at/talks/2019_munich_perl_docker_gitlab_kubernetes/index.html
April 26, 2019 at 9:53:31 AM EDT *
perl docker
FILLER

A beginner’s guide to Docker — how to create your first Docker application

QRCode

Why use Docker as a developer?

This tool can really change a developer’s daily life. In order to best answer this question, I have written a non-exhaustive list of the benefits you will find:

Docker is fast. Unlike a virtual machine, your application can start in a few seconds and stop just as quickly.
Docker is multi-platform. You can launch your container on any system.
Containers can be built and destroyed faster than a virtual machine.
No more difficulties setting up your working environment. Once your Docker is configured, you will never have to reinstall your dependencies manually again. If you change computers or if an employee joins your company, you only have to give them your configuration.
You keep your work-space clean, as each of your environments will be isolated and you can delete them at any time without impacting the rest.
It will be easier to deploy your project on your server in order to put it online.
https://medium.freecodecamp.org/a-beginners-guide-to-docker-how-to-create-your-first-docker-application-cc03de9b639f
April 26, 2019 at 9:07:30 AM EDT *
docker
FILLER

Kubernetes: Getting Started - chrisshort.net

QRCode

Getting Started with Kubernetes sounds like quite a daunting feat. How do you get started with “an open-source system for automating deployment, scaling, and management of containerized applications”?

https://chrisshort.net/kubernetes-getting-started/
January 5, 2019 at 2:44:41 PM EST *
kubernetes linux containers docker
FILLER

Getting started with Perl on Docker

QRCode
https://perlmaven.com/getting-started-with-perl-on-docker
September 5, 2018 at 3:56:45 PM EDT *
perl docker
FILLER

The Search for a GUI Docker

QRCode

I love Docker. At first it seemed a bit silly to me for a small-scale implementation like my home setup, but after learning how to use it, I fell in love. The standard features are certainly beneficial. It's great not worrying that one application's dependencies will step on or conflict with another's. But most applications are good about playing well with others, and package management systems keep things in order. So why do I docker run instead of apt-get install? Individualized system settings.

https://www.linuxjournal.com/content/search-gui-docker
September 5, 2018 at 8:39:05 AM EDT *
docker
FILLER
Shaarli · The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community · Documentation
Fold Fold all Expand Expand all Are you sure you want to delete this link? Are you sure you want to delete this tag? The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community