All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m22s
24 lines
499 B
YAML
24 lines
499 B
YAML
services:
|
|
hastebin:
|
|
container_name: hastebin
|
|
image: rlister/hastebin
|
|
environment:
|
|
STORAGE_TYPE: redis
|
|
STORAGE_HOST: hastebinredis
|
|
ports:
|
|
- "1006:7777"
|
|
labels:
|
|
glance.name: Hastebin
|
|
glance.icon: si:jellyfin
|
|
glance.url: https://hastebin.theocorp
|
|
glance.description: Private Note Bin
|
|
glance.hide: false
|
|
hastebinredis:
|
|
container_name: hastebinredis
|
|
image: redis
|
|
volumes:
|
|
- redis_data:/data
|
|
|
|
volumes:
|
|
redis_data:
|