skip to Main Content

Why does my docker-compose.yml file dont find my Dockerfile*end file

I am trying to make a docker container run off of my docker-compose file: version: '3' services: memory_Backend: build: context: ./ dockerfile: ./project/docker/DockerfileBackend image: memoryapi_ad_img volumes: - ./:/var/lib ports: - 15555:25555 memory_Frontend: build: context: ./ dockerfile: ./project/docker/DockerfileFrontend image: memorywebsite_ad_img volumes:…

VIEW QUESTION

Visual Studio Code Makefile extension not executing make as expected

Executing make command on this Makefile compiles as expected: #SHELL = /bin/sh APP:= basic-tutorial-2 APP_INSTALL_DIR?= $(HOME)/Projects/test-gstreamer-2/build/bin CC:=/usr/bin/aarch64-linux-gnu-gcc SRCS:= $(wildcard *.c) INCS:= $(wildcard *.h) PKGS:= gstreamer-1.0 OBJS:= $(SRCS:.c=.o) CFLAGS:= $(shell pkg-config --cflags $(PKGS)) LIBS:= $(shell pkg-config --libs $(PKGS)) #$(info $$CFLAGS is…

VIEW QUESTION
Back To Top
Search