We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd7a8ce commit 9bbd210Copy full SHA for 9bbd210
docker-compose.yml
@@ -1,13 +1,10 @@
1
services:
2
- dashboard: # Defines the service named "flask-app"
+ dashboard:
3
image: ghcr.io/loadingstill/webgsm:latest # Pulls the pre-built image from GitHub Container Registry
4
container_name: WebGSM-Dashboard
5
- build:
6
- context: . # Build the image using the Dockerfile in the current directory
7
- dockerfile: Dockerfile # Specifies the name of the Dockerfile (optional if named 'Dockerfile')
8
ports:
9
- - "5050:5050" # Map container port 5000 to local port 5000, allowing access to the Flask app from the browser at localhost:5000
10
- restart: always # Ensure the container always restarts if it stops or crashes
+ - "5050:5050"
+ restart: always
11
logging:
12
driver: "json-file"
13
options:
0 commit comments