Skip to content

Commit

Permalink
use added the docker contaienr latest link, removed version number du…
Browse files Browse the repository at this point in the history
…e to not needed anymore
  • Loading branch information
LoadingStill committed Dec 31, 2024
1 parent b71dc34 commit a090827
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
version: '3.8' # Specifies the version of the Docker Compose file format

services:
web-app: # Defines the service named "flask-app"
dashboard: # Defines the service named "flask-app"
image: ghcr.io/loadingstill/webgsm:latest # Pulls the pre-built image from GitHub Container Registry
build:
context: . # Build the image using the Dockerfile in the current directory
dockerfile: Dockerfile # Specifies the name of the Dockerfile (optional if named 'Dockerfile')
Expand All @@ -15,4 +14,6 @@ services:
max-file: "3"
labels: "debug"
volumes:
- /var/run/docker.sock:/var/run/docker.sock # Mount the Docker socket to allow container to control Docker
- /var/run/docker.sock:/var/run/docker.sock # Mount the Docker socket to allow container to control Docker
environment:
- FLASK_ENV=development

0 comments on commit a090827

Please sign in to comment.