File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1- version : ' 3.8' # Specifies the version of the Docker Compose file format
2-
31services :
4- web-app : # Defines the service named "flask-app"
2+ dashboard : # Defines the service named "flask-app"
3+ image : ghcr.io/loadingstill/webgsm:latest # Pulls the pre-built image from GitHub Container Registry
54 build :
65 context : . # Build the image using the Dockerfile in the current directory
76 dockerfile : Dockerfile # Specifies the name of the Dockerfile (optional if named 'Dockerfile')
@@ -15,4 +14,6 @@ services:
1514 max-file : " 3"
1615 labels : " debug"
1716 volumes :
18- - /var/run/docker.sock:/var/run/docker.sock # Mount the Docker socket to allow container to control Docker
17+ - /var/run/docker.sock:/var/run/docker.sock # Mount the Docker socket to allow container to control Docker
18+ environment :
19+ - FLASK_ENV=development
You can’t perform that action at this time.
0 commit comments