Einfacher Bilder-Upload-Service
  • PHP 48.6%
  • JavaScript 32%
  • CSS 15.5%
  • Dockerfile 3.9%
Find a file
2025-03-09 22:59:06 +01:00
docker Dockerfiles 2025-03-09 22:49:18 +01:00
themes/gideonstar Theme gideonstar: Fade-Effekt hinzugefügt 2023-03-25 17:07:13 +01:00
.gitignore * config.php nach config.dist.php verschoben 2023-03-23 10:15:05 +00:00
cleanup.php Cleanup Script hinzugefügt 2023-03-23 12:41:28 +00:00
config.dist.php Footer hinzugefügt 2023-03-25 12:15:07 +01:00
index.php Footer hinzugefügt 2023-03-25 12:15:07 +01:00
LICENSE WTFPL als Lizenz hinzugefügt 2023-03-23 13:08:28 +00:00
README.md Readme 2025-03-09 22:59:06 +01:00
robots.txt Init 2023-03-22 22:10:33 +00:00
script.js Funktion dropzone_toggle() 2023-03-24 15:47:56 +01:00
upload.php Erlaubte Dateitypen in ein Array gepackt 2023-03-24 15:41:49 +01:00

Installation mit Docker Compose

mkdir /opt/imgpaste
cd /opt/imgpaste

git clone https://git.stefanritter.de/gideonstar/imgpaste

cd imgpaste/docker
docker build -t imgpaste .

cd ..
cp config.dist.php config.php

mkdir i
chmod 777 i

cd ..

docker-compose.yml:

name: imgpaste
services:
    imgpaste:
        container_name: imgpaste
        image: imgpaste
        volumes:
            - ./imgpaste:/var/www
        ports:
            - "80:80"
        restart: always
docker compose up -d
curl localhost