I try to build my app with docker-compose.yml and it asks for Dockerfile, even if it is never specified
I am trying to deploy a personal project on my personal Fedora server. This is the docker-compose.yml: version: '3.7' services: postgres: image: postgres:latest container_name: db environment: POSTGRES_USER: user POSTGRES_PASSWORD: 1234 POSTGRES_DB: TESAF ports: - "9111:5432" healthcheck: test: ["CMD", "pg_isready", "-U",…