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
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
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
  • 205
  • 4
  • 15
0
votes
1 answer

Got django.db.utils.OperationalError: could not connect to server: Connection refused

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
  • 205
  • 4
  • 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
0 answers

Is the server running on host "dbi5k" (192.168.32.3) and accepting

I found a Django project and failed to get it running in Docker container in the following way: git clone https://github.com/hotdogee/django-blast.git $ cat requirements.txt in this files the below dependencies had to be…
user977828
  • 205
  • 4
  • 15
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
  • 4
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…
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
  • 141
  • 8
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
0
votes
1 answer

How can I use docker-compose to deploy to production using an env_file on the server?

Take the following simplified example: services: app: image: alpine env_file: config.env entrypoint: - /bin/sh - -c - 'echo "Var is: $$MY_VAR"' I have config.env locally with my local dev settings, and a config.env…
Ben Davis
  • 250
  • 1
  • 4
  • 16
0
votes
1 answer

Can't 'php artisan migrate' inside docker

Trying to run 'php artisan migrate' in docker returned following error Illuminate\Database\QueryException could not find driver (SQL: select * from information_schema.tables where table_schema = admin and table_name = migrations and table_type…
Kamil
  • 1
  • 1
0
votes
1 answer

DockerFile and docker-compose (Homeassistant and Node-red Nodes)

I hope this is an easy one. I'm using Docker to run Homeassistant and Node-Red containers on a Raspberry Pi 4. Based on this guide they recommend making a DockerFile to install Node-Red nodes to support Homeassistant. The install is handled via the…
red_shift
  • 162
  • 9