Dateien nach "install-dozzle-on-docker" hochladen
This commit is contained in:
parent
a46291678f
commit
fcbe684ed3
|
@ -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"
|
Loading…
Reference in New Issue