We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56ee451 commit 413a29cCopy full SHA for 413a29c
Dockerfile
@@ -13,7 +13,7 @@ COPY . .
13
14
# Make sure .env will work
15
RUN pip install python-dotenv
16
-
+RUN apt-get update && apt-get install -y docker.io
17
18
# Expose port and run Flask
19
EXPOSE 5050
docker-compose.yml
@@ -13,4 +13,6 @@ services:
options:
max-size: "10m"
max-file: "3"
- labels: "debug"
+ labels: "debug"
+ volumes:
+ - /var/run/docker.sock:/var/run/docker.sock # Mount the Docker socket to allow container to control Docker
0 commit comments