updated dozzle and commented out portainer

This commit is contained in:
2024-07-05 17:36:17 -05:00
parent 8cdba4946e
commit 87c48e0ac5

View File

@@ -18,27 +18,27 @@ services:
container_name: dozzle
image: amir20/dozzle:latest
environment:
- DOZZLE_ADDR=:1234
- DOZZLE_REMOTE_AGENT=192.168.1.35:7007
networks:
- reverse-proxy
ports:
- 9999:1234
- 8080:8080
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
portainer:
container_name: portainer
image: portainer/portainer-ce:latest
networks:
- reverse-proxy
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
# portainer:
# container_name: portainer
# image: portainer/portainer-ce:latest
# networks:
# - reverse-proxy
# 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:
reverse-proxy: