403Webshell
Server IP : 164.138.27.172  /  Your IP : 216.73.217.113
Web Server : nginx/1.27.4
System : Linux cookingdream 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64
User : www-adm ( 1001)
PHP Version : 8.3.32
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /home/jonasn/dev/goto10/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/jonasn/dev/goto10/docker-compose.yml
version: "3"
services:
    web:
        image: nginx:alpine
        volumes:
            - "./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf"
            - "./:/var/www/html"
            - "./docker/nginx/default.template.conf:/etc/nginx/conf.d/default.template"
        ports:
            - "${DOCKER_PORT}:80"
        environment:
            - NGINX_HOST=${NGINX_HOST}
            - VIRTUAL_HOST=${NGINX_HOST}
        command: /bin/sh -c "envsubst '$$NGINX_HOST' < /etc/nginx/conf.d/default.template > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'"
        restart: always
        depends_on:
            - php
            - mysqldb
    php:
        image: nanoninja/php-fpm:${PHP_VERSION}
        restart: always
        volumes:
            - "./docker/php/php.ini:/usr/local/etc/php/conf.d/php.ini"
            - "./:/var/www/html"
    composer:
        image: "composer"
        volumes:
            - "./:/app"
        command: install
    mysqldb:
        image: mysql:${MYSQL_VERSION}
        container_name: ${DB_HOST}
        restart: always
        env_file:
            - ".env"
        environment:
            - MYSQL_DATABASE=${DB_NAME}
            - MYSQL_ROOT_PASSWORD=root
            - MYSQL_USER=${DB_USER}
            - MYSQL_PASSWORD=${DB_PASSWORD}
        ports:
            - "1894:3306"
        volumes:
            - "./.data/db/mysql:/var/lib/mysql"
    adminer:
        image: michalhosna/adminer:master
        ports:
            - "8081:8080"
        environment:
            ADMINER_DB: ${DB_NAME}
            ADMINER_PASSWORD: ${DB_PASSWORD}
            ADMINER_SERVER: ${DB_HOST}
            ADMINER_USERNAME: ${DB_USER}
            ADMINER_AUTOLOGIN: 0
            ADMINER_NAME: Internetkunskap DB

Youez - 2016 - github.com/yon3zu
LinuXploit