skip to Main Content

docker apache volume not working properly

version: "3.8" networks: frontend: backend: services: apache: container_name: apache build: ./docker/apache/ ports: - "8001:80" volumes: - ./src:/usr/local/apache2/htdocs networks: - frontend - backend php: container_name: php build: ./docker/php ports: - "9001:9000" volumes: - ./src:/usr/local/apache2/htdocs working_dir: /usr/local/apache2/htdocs networks: - backend apache.conf LoadModule…

VIEW QUESTION

Docker download and install binary – Debian

im trying to install the Hugo tool in docker file following this guideline https://gohugo.io/getting-started/installing/#debian-and-ubuntu What I did is the following FROM debian:11.3 RUN apt-get update && apt-get install -y --no-install-recommends hugo RUN ["hugo version"] The docker build working except the…

VIEW QUESTION
Back To Top
Search