Skip to main content
-1 votes
0 answers
41 views

hi everyone first of all i did what i all know but it doesnt work services: hotelreservationapi-presentation: image: hotelreservationapi-presentation:latest build: context: ./...
0 votes
1 answer
26 views

I'm running a project with docker and traefik. I try to access http://myproject.localhost/typo3 Suddenly i get this error: "404 page not found" I don't know how to fix or to debug this error....
438 votes
8 answers
935k views

I have a development environment I'm dockerizing and I would like the ability to livereload my changes without having to rebuild docker images. I'm using docker compose because redis is one of my app'...
2 votes
2 answers
1k views

Does specifying custom networks in docker-compose remove services from the default network? I can't find any information about this. example version: '3' services: nginx: image: 'nginx:alpine' ...
0 votes
0 answers
28 views

I have a single ymal file with Gluetun and some Arr containers with Gluetun providing the VPN here is my code for Prowler prowlarr: image: linuxserver/prowlarr:latest container_name: prowlarr ...
9 votes
1 answer
4k views

I'm experiencing an issue with formatting my docker-compose.yaml file in Visual Studio Code, and I'm looking for some guidance. I have installed the Docker extension from this link. When I open a ...
0 votes
2 answers
11k views

I'm trying to build multiple services and reverse proxy them with nginx. So service1 is: http://api/service1 (nginx) => docker (http://service1:4001/) => express (http://localhost:4000) ...
39 votes
18 answers
105k views

I went through this link: Docker push - net/http: TLS handshake timeout, but it did not solved my issue. I am simply running the https://github.com/sqshq/PiggyMetrics using the docker-compose up ...
Advice
0 votes
0 replies
49 views

I use docker-compose to run airflow. Postgres section is postgres: image: postgres:12.16 environment: - POSTGRES_USER - POSTGRES_PASSWORD - POSTGRES_DB healthcheck: test: [ "...
1 vote
2 answers
4k views

i have the following simple dockerfile to add php from alpine, FROM php:7.2-fpm-alpine # Install composer RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --...
4 votes
2 answers
2k views

after looking for an answer 2 weeks along, going deep into the docker compose and docker networks documentations, I'd like to ask for some help right here. I am creating two Web API services, let's ...
1 vote
1 answer
513 views

I want to add a new service into docker-compose.yml with bash. this is how it looks: #!/bin/bash # Check if the file exists if [ ! -f "docker-compose.yml" ]; then echo "Error: docker-...
-3 votes
0 answers
91 views

When I run the command on docker container backend: psql -h localhost -p 5432 -U postgres I receive the following error: psql: error: connection to server at "localhost" (::1), port 5432 ...
0 votes
0 answers
25 views

I'm trying to set it up via the docker compose plugin in OpenMediaVault's GUI. Essentially we supply the relevant app's docker compose yml contents and then pull it - all via GUI. Here's the yml I've ...
7 votes
3 answers
9k views

I need to add a health-check for the kafka service in docker-compose. kafka: image: bitnami/kafka:3.6.1 restart: always container_name: kafka ports: - '9092:9092' volumes: ...

15 30 50 per page
1
2 3 4 5
2160