Update .gitignore to remove memos database, fix README.md environment file path, and add docker-compose for omni-tools service

This commit is contained in:
Peter Wood
2025-04-29 19:50:16 +00:00
parent 827ef790d8
commit efee0d8ac9
4 changed files with 13 additions and 5 deletions

1
.gitignore vendored
View File

@@ -23,4 +23,3 @@ pdf/stirling/latest/config/*.db
# ignore environment files # ignore environment files
.env .env
memos/.memos/memos_prod.db

View File

@@ -1,11 +1,11 @@
# Create an environment file # Create an environment file
```shell ```shell
touch ~/docker/dozzke/.env touch ~/docker/dozzle/.env
nano ~/docker/dozzle/.env nano ~/docker/dozzle/.env
``` ```
## Add the following values ## Add the following values
`HOSTNAME`=ts-vperanda|ts-io|ts-svr-office `HOSTNAME`=racknerd|io|europa

View File

@@ -8,9 +8,11 @@ services:
environment: environment:
- PUID:1000 - PUID:1000
- GUID:1000 - GUID:1000
- HOMEPAGE_ALLOWED_HOSTS:*
volumes: volumes:
- ./config:/app/config - ./config:/app/config
- /var/run/docker.sock:/var/run/docker.sock:ro - /var/run/docker.sock:/var/run/docker.sock:ro
restart: unless-stopped restart: unless-stopped
labels: labels:
- diun.enable=true - diun.enable=true
networks: {}

7
omni-tools/compose.yaml Normal file
View File

@@ -0,0 +1,7 @@
services:
omni-tools:
image: iib0011/omni-tools:latest
container_name: omni-tools
restart: unless-stopped
ports:
- "9980:80"