Compare commits

...
Sign in to create a new pull request.

12 commits
dev ... main

Author SHA1 Message Date
lllllllillllllillll
7d0bbc27fa
Update README.md 2024-08-28 23:35:09 -07:00
lllllllillllllillll
47c9ab68ce
Merge pull request #91 from joestump/main
Add docs for environment variables
2024-07-09 19:52:59 -07:00
Joe Stump
518bc46dab
Add docs for environment variables 2024-07-08 08:56:20 -04:00
lllllllillllllillll
00216663a5
Merge pull request #86 from lllllllillllllillll/dependabot/github_actions/docker/build-push-action-6
Bump docker/build-push-action from 5 to 6
2024-06-19 23:49:15 -07:00
dependabot[bot]
f46648e598
Bump docker/build-push-action from 5 to 6
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v5...v6)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-17 19:56:57 +00:00
lllllllillllllillll
d905a95764
Update README.md 2024-06-16 12:45:41 -07:00
lllllllillllllillll
a67f65996e
Update compose.yaml
changed volume to /app/config
2024-06-15 02:27:08 -07:00
lllllllillllllillll
4b5ae32a97
Update README.md
fix compose volume
2024-06-15 02:23:57 -07:00
lllllllillllllillll
ee9870f554
Update README.md 2024-06-09 02:44:49 -07:00
lllllllillllllillll
8f97e17765
Merge pull request #74 from lllllllillllllillll/dev
## v0.60 (June 9th 2024) - Permissions system and import templates
2024-06-09 01:28:36 -07:00
lllllllillllllillll
c7d79b296c
Merge pull request #60 from lllllllillllllillll/dev
v0.40
2024-02-26 15:59:24 -08:00
lllllllillllllillll
c3f10fbb7c
Merge pull request #47 from lllllllillllllillll/dev
v0.20 - The rewrite
2024-01-20 15:36:14 -08:00
3 changed files with 9 additions and 7 deletions

View file

@ -55,7 +55,7 @@ jobs:
# Build image and only publish if not a Pull Request
- name: Build and Publish Docker Image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
timeout-minutes: 30
with:
context: .

View file

@ -1,4 +1,4 @@
<h3 align="center"><img width="150" src="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/public/images/logo.png"></h3>
<h3 align="center"><img width="150" src="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/public/img/logo.png"></h3>
<h4 align="center">DweebUI Beta v0.60 ( :fire: Experimental :fire: )</h4>
<h3 align="center">Free and Open-Source WebUI For Managing Your Containers.</h3>
<p align="center">
@ -43,11 +43,10 @@ version: "3.9"
services:
dweebui:
container_name: dweebui
image: lllllllillllllillll/dweebui:v0.60
image: lllllllillllllillll/dweebui
environment:
PORT: 8000
SECRET: MrWiskers
HTTPS: false
restart: unless-stopped
ports:
- 8000:8000
@ -77,7 +76,10 @@ Compose setup:
* Open a terminal in the ```dweebui``` folder, then enter ```docker compose up -d```.
* You may need to use ```docker-compose up -d``` or execute the command as root with either ```sudo docker compose up -d``` or ```sudo docker-compose up -d```.
Configuration:
* `PORT` - Specifies which port the service binds to on startup. Default is `8000`.
* `SECRET` - A shared secret used by the registration page.
## Credits
@ -90,4 +92,4 @@ Compose setup:
## Supporters
* MM (Patreon)
* PD (Buymeacoffee)
* PD (Buymeacoffee)

View file

@ -10,7 +10,7 @@ services:
ports:
- 8000:8000
volumes:
- dweebui:/app
- dweebui:/app/config
# Docker socket
- /var/run/docker.sock:/var/run/docker.sock
# Podman socket
@ -24,4 +24,4 @@ volumes:
networks:
dweebui_net:
driver: bridge
driver: bridge