skip to Main Content

Changes on template files inside volume not showing on Flask frontend – Docker

I am using a docker-compose Flask implementation with the following configuration docker-compose: version: '3' services: dashboard: build: context: dashboard/ args: APP_PORT: "8080" container_name: dashboard ports: - "8080:8080" restart: unless-stopped environment: APP_ENV: "prod" APP_DEBUG: "False" APP_PORT: "8080" volumes: - ./dashboard/:/usr/src/app dashboard/Dockerfile:…

VIEW QUESTION
Back To Top
Search