From 74a695d65c5714b4722b2a60a297f4e60a38416b Mon Sep 17 00:00:00 2001 From: NightPumpkin Date: Sun, 25 Sep 2022 22:08:46 +0200 Subject: [PATCH] hasty-paste --- docker-compose/hasty-paste/docker-compose.yml | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 docker-compose/hasty-paste/docker-compose.yml diff --git a/docker-compose/hasty-paste/docker-compose.yml b/docker-compose/hasty-paste/docker-compose.yml new file mode 100644 index 0000000..0cd3633 --- /dev/null +++ b/docker-compose/hasty-paste/docker-compose.yml @@ -0,0 +1,21 @@ +## Discord Plex FR : https://discord.gg/3gtABCH +## Version 2022-09-25 +version: "3" + +services: + paste-bin: + container_name: paste-bin + image: ghcr.io/enchant97/hasty-paste:1 + restart: unless-stopped + environment: + - "NEW_AT_INDEX=True" + - "UI_DEFAULT__USE_LONG_ID=True" + - "UI_DEFAULT__EXPIRE_TIME__ENABLE=True" + - "UI_DEFAULT__EXPIRE_TIME__MINUTES=0" + - "UI_DEFAULT__EXPIRE_TIME__HOURS=0" + - "UI_DEFAULT__EXPIRE_TIME__DAYS=31" + volumes: + - ./data:/app/data + ports: + - 8000:8000 +