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.

581 questions
0
votes
1 answer

Nginx handle SSL and proxy pass to HTTP backend in docker but tries to keep serving local content

I try to set up a docker-compose environment in which a Nginx container receives HTTPS requests, handles the SSL and reverse proxies them to a dotnet-core app which only implements HTTP. This topic has been discussed here several times and I tried…
Benj
  • 117
  • 4
0
votes
1 answer

How to connect container in another docker network?

I have postgres running in default container network as it ran using docker run command. And, our webapp running on the same server but spinned as a docker-compose service. So, there is separate bridge network created for that automatically. How to…
uday
  • 352
  • 10
  • 30
0
votes
1 answer

Nginx proxy is not finding the backend services

I've an installation with 2 backend services that should be proxied by a third Nginx service. I've deployed the 3 services succesfully but for some reason I can't get nginx to see the other 2 services giving the error: GET / HTTP/1.1" 502…
Nico Gatti
  • 1
  • 1
  • 1
0
votes
1 answer

docker-compose with nginx and nextcloud FPM stops accepting https connections

I have a fairly standard setup, with nginx as a web frontend (with https certiticates and such) and a nextcloud FPM backend; the whole installation has very low traffic, since I am the only one using it. At one point https stops working, every…
0
votes
0 answers

Bind Docker port running on localhost to public IP

I have a docker-compose.yml file which runs a couple of Apache web applications. I have a HAProxy acting as a reverse proxy for the web apps also running inside the container environment. I've exposed the HAProxy port with the directive ports: -…
0
votes
1 answer

Constant timeouts when conecting from LAN to services behind a reverse proxy

years after my first home server died, i've decided to have one again. This time for the sake of learning and having more flexibility i'm doing it with docker containers. The thing is, i've set up a reverse proxy with nginx and the let's ecnrypt…
0
votes
1 answer

Docker mysqld: Can't create/write to file (Errcode: 2 - No such file or directory)

When I run docker-compose up --build database I ma getting following error. I cannot make it work. How can I change /var/lib/tmp/ permisions in docker container. database_1 | mysqld: Can't create/write to file '/var/lib/tmp/iblofOgV' (Errcode: 2 -…
Piusha
  • 101
  • 1
0
votes
1 answer

Exception Value: relation "django_session" does not exist

I found a Django project and failed to get it running in Docker container in the following way: git clone git clone https://github.com/NAL-i5K/django-blast.git $ cat requirements.txt in this files the below dependencies had to be…
user977828
  • 225
  • 1
  • 6
  • 15
0
votes
1 answer

ECS Cluster Service not Running Containers

Recently I created an ECS cluster. I used the wizard on the AWS console to create it using an existing VPC, subnets, keypair and a previously created IAM role (from another cluster creation operation). Then I proceeded to create a service using a…
Eddysanoli
  • 101
  • 1
0
votes
1 answer

Dockerized nginx - Nginx Proxy Manager, block port 81 from the internet?

I'm running a vps with Nginx Proxy Manager on it, and i was in the process of securing my server. I want to be able to connect to the port 81 of the server when i'm connceted via VPN but block it for everyone else on the internet. I've tried to…
0
votes
1 answer

Serve Docker PHP FPM content through non-docker NGINX

I'm trying to run MyBB forum software with Docker to run it on my server where I already have NGINX running serving other content. This is how my docker-compose.yml currently looks like (I've been changing and testing stuff for a while…
JV Lobo
  • 3
  • 5
0
votes
1 answer

Docker 8082 port not reachable

I have configuration in my docker-compose.yml swagger-ui: image: swaggerapi/swagger-ui container_name: "swagger-ui" ports: - "8082:8080" environment: API_URL: "https://my.site/swagger.json" Its work on my…
0
votes
1 answer

Docker-Compose Logs From Interval Process are Queued?

I've got a Docker Container setup that includes two python programs running at the same time. Process A is a web server supported by flask that selects data from an SQLITE DB and puts it on a static page Process B is a program which retrieves data…
object Object
  • 131
  • 1
  • 7
0
votes
0 answers

Nginx: Set up sub-sub-domains

I rent a V-Server and I got a sub-domain like abc.provider.net. On my server, I set up a set of docker containers using docker-compose providing web apps. Now I want to set up Nginx in order to access them. (Later I want to set up certbot for…
Alex44
  • 181
  • 1
  • 9
0
votes
1 answer

How to connect to PostgreSql database in docker (linux) container from windows desktop via vbscript

I face the following error in trying to connect to PostgreSql database in (linux) docker container from windows desktop via vbscript: Microsoft OLE DB Provider for ODBC Drivers (30, 11) : FATAL: password authentication failed for user "dev" FATAL: …
M.Y.
  • 111
  • 1