Questions tagged [docker-compose]

Compose is a tool for defining and running multi-container Docker applications.

Docker Compose is a tool for defining and running multi-container Docker applications.

529 questions
0
votes
0 answers

next-auth ECONNREFUSED 127.0.0.1:80

I am using Next-auth with keycloak and docker-compose and I get this error: [next-auth][error][GET_AUTHORIZATION_URL_ERROR] arcade-iori | https://next-auth.js.org/errors#get_authorization_url_error connect ECONNREFUSED 127.0.0.1:80…
0
votes
1 answer

Can NOT bind host port 14433 to container port 433 using localhost, but https works using container IP (for example 172.21.0.2)

When I do lynx localhost:14080 from host, it works. The website is loaded from the container. When I do lynx localhost:14433 from host, it does NOT work. When I do lynx https://localhost:14433 from host, it does NOT work. Error: Unable to make…
0
votes
0 answers

docker-compose with multiple networks

I want to install NextCloud (https://hub.docker.com/_/nextcloud) via docker-compose. After analyzing the docker-compose structure, I see that this image is composed of two services (app and db). Currently, in a server, I have all docker based…
wadge
  • 151
  • 1
  • 8
0
votes
0 answers

How to add a network interface to Docker Overlay network?

How can I add a network interface (either a physical like eth0 or virtual like tap) to Docker Overlay network overlaynet? So that my interface becomes part of the layer 2 network with the other containers in that Overlay network? When I used to…
0
votes
1 answer

UFW port not accessible from public web despite rule explicitely allowing it

I have two dedicated servers: "web" (YYY.YYY.YYY.YYY) and "monitor" (XXX.XXX.XXX.XXX). Both are in the same network of a mass hoster (hetzner). Now on "web" I have 3 prometheus metric endpoints running : docker-engine (9323) on the bare metal host…
0
votes
0 answers

Getting access denied from watchtower when pulling from docker hub with docker-compose

I'm getting the following error from my watchtower container: level=debug msg="Error pulling image aaa/xxx-react18-menu:latest, Error response from daemon: Head \"https://registry-1.docker.io/v2/aaa/xxx-react18-menu/manifests/latest\": unauthorized:…
0
votes
1 answer

Using dnsmasq in a Docker container for the host and for Docker internal DNS resolution

I'm working on a web project that consists of multiple services. Every service has it's own docker-compose.yml file that declares it's "app" and it's possible dependencies (databases etc). To have them all play nicely together, I have built a local…
Bram
  • 101
  • 1
  • 2
0
votes
1 answer

Can't connect to mysql docker when using phpmyadmin docker

I'm just getting started in docker and maybe I'm starting of a little big but I found an article that explained out to get a coldfusion install (run by commandbox) up with mysql. This docker compose works just fine. I had the idea of adding in…
weggie
  • 101
  • 1
0
votes
0 answers

docker - WebDriverError: unknown error: Chrome failed to start: exited abnormally

I am a novice in a docker container. I am trying to create a docker file that has npm, node js, chromedriver and selenium-chromedriver and run my javascript file. In my local , I run the script in the headless chrome browser. Here is my docker…
Jay
  • 3
  • 3
0
votes
1 answer

docker - nodejs - selenium-webdriver - Error: Server terminated early with status 127

I am a novice in a docker container. I am trying to create a docker file that has npm, node js, chromedriver and selenium-chromedriver and run my javascript file. In my local , I run the script in the headless chrome browser. Here is my docker…
Jay
  • 3
  • 3
0
votes
1 answer

Recreate single docker-compose container with new config

If I make changes to my docker-compose.yml (say, change which host port a container port is exposed on), can I recreate that single container or do I need to restart the whole stack? docker-compose stop ; docker-compose up will do the job but I want…
Tom
  • 295
  • 1
  • 11
0
votes
0 answers

Questions about running postgres as Docker Container. 1. TimeZone, 2. global.stat

I'm been running postgres as a Docker Container for quite awhile. Initially, the TZ and PGTZ were not set, so I think it was defaulting to UTC. On my dev system I tried the following in docker-compose.yml: postgres: image: postgres:13 …
SScotti
  • 139
  • 5
0
votes
1 answer

Add private GitHub repository "the right way" in dockerfile (w composer.json)

I'm trying to add my private GitHub repository, through the composer.json-file, while building a docker image. But I can't make it work no matter what I try. I want the most simple approach possible, it doesn't have to be the most secure but at…
Oakleaf
  • 101
  • 1
0
votes
0 answers

Docker multiple port to single container port configuration

I want to configure localstack as a shared container between different micro services. But the problem in my company's environment is, these different micro services configure different ports for different services in localstack and hence every…
0
votes
1 answer

How to move existing docker-compose created outside of portainer into portainer?

I created the nginxproxymanager docker compose file and volume mount points outside of portainer. /home/user/docker/nginxproxymanager/data, letsencrypt, docker-compose.yaml And portainer, while being able to start and stop the service, display IP…
Asmodean
  • 59
  • 1
  • 1
  • 6