Dateien nach "install-dozzle-on-portainer" hochladen

This commit is contained in:
M_Viper 2024-02-12 21:00:57 +00:00
parent fcbe684ed3
commit a80d459175
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
version: "3" # Specifies the version of the Docker Compose file format
services:
# Service name: app
# The `app` service definition
app:
# Name of the container
container_name: M_Viper-dozzle
# Image to be used for the container
image: amir20/dozzle:v6.2.4
# Container restart policy
restart: unless-stopped
# Volumes to be mounted to the container
volumes:
# Mounting docker.sock to allow docker management via Dozzle
- /var/run/docker.sock:/var/run/docker.sock
# Ports mapping between host and container
ports:
# Mapping port 8888 of the host to port 8080 of the container
- "8888:8080"