skip to Main Content

Image can't start – Nginx

I can't start image with clear installed Ubuntu. Then trying to install Nginx and PHP in Dockerfile. I use command docker-compose up -d to to prepare and start container, but it always restarting. Where is the error? Here is my…

VIEW QUESTION

Jest watch interactive with docker-compose – Phpmyadmin

I have this docker compose file: version: "2.4" services: mysql: image: mysql:8.0 environment: - MYSQL_ROOT_PASSWORD=mypasswd healthcheck: test: ["CMD", "mysqladmin", "ping", "-h", "localhost"] timeout: 20s retries: 10 phpmyadmin: image: phpmyadmin/phpmyadmin:latest ports: - 8080:80 environment: - PMA_HOST=mysql depends_on: mysql: condition: service_healthy app:…

VIEW QUESTION
Back To Top
Search