Initial Commit

Adding docker compose stacks
This commit is contained in:
2024-10-01 21:51:58 +00:00
commit 36ca607c74
12 changed files with 376 additions and 0 deletions

23
wastebin/compose.yml Normal file
View File

@@ -0,0 +1,23 @@
services:
wastebin:
image: 'quxfoo/wastebin:latest'
container_name: wastebin
environment:
- WASTEBIN_DATABASE_PATH=/data/state.db
user: "1029:1000"
ports:
- "9020:8088"
volumes:
- '/home/fejy/docker/wastebin:/data'
labels:
- "traefik.enable=true"
- "traefik.http.routers.bin.rule=Host(`bin.nearfuture`)"
- "traefik.http.routers.bin.entrypoints=web"
networks:
- proxy
networks:
proxy:
external: true