⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
docker-templates
/
nginx-php-fpm
/
View File Name :
docker-compose.yml
version: '3' services: mysql: image: mysql:5.7 ports: - "3306" volumes: - dbdata:/var/lib/mysql - ./config-files/mysql/conf.d/:/etc/mysql/conf.d environment: MYSQL_ROOT_PASSWORD: MyEpicPassword MYSQL_DATABASE: prestashop restart: always php: build: context: build-php args: phpbuild: 7.1-fpm expose: - "9000" depends_on: - mysql volumes: - ./www/:/var/www/html/ - ./config-files/php/php.ini:/usr/local/etc/php/php.ini restart: always nginx: image: nginx ports: - "8002:80" - "443" depends_on: - php volumes: - ./www/:/var/www/html/ - ./logs/nginx/:/var/log/nginx - ./config-files/nginx/conf.d/:/etc/nginx/conf.d restart: always volumes: dbdata: