DweebUI/compose.yaml

27 lines
506 B
YAML
Raw Normal View History

2024-05-12 08:30:37 +00:00
version: "3.9"
services:
dweebui:
container_name: dweebui
2024-05-19 22:55:29 +00:00
image: lllllllillllllillll/dweebui:v0.60
2024-05-12 08:30:37 +00:00
environment:
PORT: 8000
SECRET: MrWiskers
restart: unless-stopped
ports:
- 8000:8000
volumes:
- dweebui:/app
# Docker socket
- /var/run/docker.sock:/var/run/docker.sock
# Podman socket
#- /run/podman/podman.sock:/var/run/docker.sock
networks:
- dweebui_net
volumes:
dweebui:
networks:
dweebui_net:
2024-02-26 23:30:38 +00:00
driver: bridge