removed old configs

This commit is contained in:
2023-05-17 01:58:54 -05:00
parent 2963f17b1c
commit d2bbd0d222
5 changed files with 1 additions and 265 deletions

35
admin/docker-compose.yml Normal file
View File

@@ -0,0 +1,35 @@
version: '3'
services:
dozzle:
container_name: dozzle
hostname: dozzle
image: amir20/dozzle:latest
environment:
- DOZZLE_ADDR=:1234
networks:
- admin
ports:
- 9999:1234
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
portainer:
container_name: portainer
hostname: portainer
image: portainer/portainer-ce:latest
environment:
- AGENT_SECRET=$ADMIN_PASSWORD
networks:
- admin
ports:
- 9000:9000/tcp
restart: always
volumes:
- ./appdata/portainer/data:/data
- /var/run/docker.sock:/var/run/docker.sock
- /etc/localtime:/etc/localtime:ro
networks:
admin: