Skip to content

Commit a090827

Browse files
committed
use added the docker contaienr latest link, removed version number due to not needed anymore
1 parent b71dc34 commit a090827

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docker-compose.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
version: '3.8' # Specifies the version of the Docker Compose file format
2-
31
services:
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

0 commit comments

Comments
 (0)