skip to Main Content

connect docker postgres from outside (DBeaver)

I am using Airflow through Docker-compose. The same docker-compose.yml has an image of Postgres as well. The config looks like below - postgres: image: postgres:13 ports: - 5432:5432 environment: POSTGRES_USER: airflow POSTGRES_PASSWORD: airflow POSTGRES_DB: airflow volumes: - postgres-db-volume:/var/lib/postgresql/data healthcheck: test:…

VIEW QUESTION

Cant find laravel running in port 8000 – Docker

I was creating docker container for laravel with postgres. containers running but cant find laravel in web. Dockerfile: FROM php:7.4-fpm-alpine RUN docker-php-ext-install pdo pdo_pgsql RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer RUN composer install WORKDIR /var/www/html COPY .…

VIEW QUESTION
Back To Top
Search