I'm new to Kubernetes and learning it these days. I'm trying to create a deployment with the help of kubectl and every time I create a deployment, the container
I have a mysql docker container that maps its data and logs directories onto a host path. The host paths are two separate zfs mount points. When I try to start
I have an asp.net webApi application and using redis stack as the main database. I was able to connect to the database and perform operations normally till I ma
I have a mysql docker container that has its data and logs dirs separately mapped to host folders for performance reasons. I'm using docker-compose to start the
maybe it's a silly question, but I didn't found much while googling around. So I'm on the way to transform my development environment to a deploy environment. I
I have created a docker-compose file for localstack and I'm using only services like s3 and SQS. It works fine and I could create a dummy SQS, S3 from localsta
This is my Dockerfile FROM php:8.1-fpm-alpine3.15 RUN apk update; \ apk upgrade; RUN apk add libzip-dev RUN docker-php-ext-install zip RUN apk add --no-ca
My Dockerfile FROM python:3.10-alpine LABEL Description="test smtp server" EXPOSE 8025 COPY ./requirements.txt /app/requirements.txt WORKDIR /app RUN python -m
In docker we can pass environment variable as docker run -e -e "TEST_SUITE=TNT-TestSuite.xml". Can I do the same or similar for the docker-compose? Right now I
The goal of my project is to be able to schedule run a program from a linux server which connects to a remote (existing) ftp server and transfers from files fro
I have a problem here! I cannot deploy spring boot application to AWS Elastic Beanstalk with eb cli using docker-compose.yml Here my code! Here my simple API @R
I have deployed etcd server(3.5.0) as a container on Kubernetes and am able to access the /version and /metrics endpoints via the fqdn in HttpProxy on my local
Introduction There seems to be frequent issues with the SQLite.Interop.dll library. Just look at these other StackOverflow questions: Unable to load DLL 'SQLite
I have a docker-compose.yml file with some services, like web server, database and nginx. However, beside these services that are always up, I need a number of
I don't know why but my docker recently have been getting a lot of bugs and I even re-installed him, but anyway I'm trying to do this basic c
I've created a PostgreSQL instance via Docker and I can create tables and insert data etc fine. The issue is when I use crontab to do this. I'm using a Python s
I created a mysql docker container mysqlcontainer using following command: docker exec -it mysqlcontainer -d mysql/mysql-server I run docker logs mysqlcontaine
I am trying to run a NodeJS application on Docker. However I get that error: could not connect to postgres: Error: connect ECONNREFUSED When I debug the proble
So i am quite new to the whole CI topic and im trying to run tests after my merge request in my pipeline. Except that when my command try to run the container i
What is the docker compose equivalent of running a docker container with network of container === host network ? docker run --rm -d --network host --name my_ngi