Chevereto

Ultimate image sharing software. Create your very own personal image hosting website in just minutes.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.9'
services:
    chevereto:
	      container_name: chevereto
        image: 'ghcr.io/chevereto/chevereto:latest'
        volumes:
            - ./images:/var/www/html/images/
        environment:
            - CHEVERETO_SERVICING=server
            - CHEVERETO_MAX_UPLOAD_SIZE=2G
            - CHEVERETO_MAX_POST_SIZE=2G
            - CHEVERETO_ASSET_STORAGE_BUCKET=/var/www/html/images/_assets/
            - CHEVERETO_ASSET_STORAGE_URL=/images/_assets/
            - CHEVERETO_ASSET_STORAGE_TYPE=local
            - CHEVERETO_DB_NAME=chevereto
            - CHEVERETO_DB_PORT=3306
            - CHEVERETO_DB_PASS=user_database_password
            - CHEVERETO_DB_USER=chevereto
            - CHEVERETO_DB_HOST=database
        ports:
            - '80:80'
        restart: unless-stopped

Resources

Website: https://chevereto.com/

Demo: https://demo.chevereto.com/

GitHub: https://github.com/chevereto/chevereto

GitHub Container Registry: https://github.com/chevereto/chevereto/pkgs/container/chevereto

Configuration: https://github.com/chevereto/docker