Update .gitignore, README, and Traefik configuration; add new services and environment variables

This commit is contained in:
Peter Wood
2025-11-10 19:24:57 -05:00
parent b3ee10a119
commit f9073a07a5
10 changed files with 205 additions and 10 deletions

View File

@@ -3,16 +3,26 @@
## Useful aliases
These are defined in <https://github.com/acedanger/shell>
`dcdn`=`docker compose down`
`dcupd`=`docker compose up -d`
`dcpull`=`docker compose pull`
`dsta`=`docker stop $(docker ps -q)`
`dclf`=`docker compose logs -f`
`dxcit`=`docker container exec -it`
`lzd`=`lazydocker`
## Putting it all together
Shut it down, pull the latest images, and start it up again:
Shut it down, pull the latest images, start it up in the background, and follow the logs:
`dcdn; dcpull; dcupd`
```bash
dcdn && dcpull && dcupd && dclf
```