Einfacher Bilder-Upload-Service
- PHP 48.6%
- JavaScript 32%
- CSS 15.5%
- Dockerfile 3.9%
| docker | ||
| themes/gideonstar | ||
| .gitignore | ||
| cleanup.php | ||
| config.dist.php | ||
| index.php | ||
| LICENSE | ||
| README.md | ||
| robots.txt | ||
| script.js | ||
| upload.php | ||
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