32 lines
665 B
YAML
Executable File
32 lines
665 B
YAML
Executable File
services:
|
|
dozzle:
|
|
container_name: dozzle
|
|
image: amir20/dozzle:latest
|
|
environment:
|
|
- DOZZLE_ADDR=:1234
|
|
networks:
|
|
- reverseproxy
|
|
ports:
|
|
- 9999:1234
|
|
restart: always
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
|
|
portainer:
|
|
container_name: portainer
|
|
image: portainer/portainer-ce:latest
|
|
networks:
|
|
- reverseproxy
|
|
ports:
|
|
- 9000:9000/tcp
|
|
restart: always
|
|
volumes:
|
|
- ${DOCKER_CONFIGS}/portainer/data:/data
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|
|
networks:
|
|
reverseproxy:
|
|
name: reverseproxy
|
|
external: true
|