Initial Commit
Adding docker compose stacks
This commit is contained in:
23
wastebin/compose.yml
Normal file
23
wastebin/compose.yml
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user