_MIMBOL_

Untitled

Jul 8th, 2023
1,466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.71 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4.   nginx:
  5.     image: nginx:1.13
  6.     ports:
  7.      - 80:80
  8.     volumes:
  9.      - ./src:/usr/share/nginx/html
  10.       - ./nginx.conf:/etc/nginx/nginx.conf
  11.     depends_on:
  12.      - php
  13.  
  14.   php:
  15.     build:
  16.       dockerfile: ./Dockerfile
  17.     volumes:
  18.      - ./src:/usr/share/nginx/html
  19.       - ./php.ini:/usr/local/etc/php/php.ini
  20.     depends_on:
  21.      - mariadb
  22.   mariadb:
  23.     image: mariadb:10.3
  24.     volumes:
  25.      - ./mariadb:/var/lib/mysql
  26.     environment:
  27.       MYSQL_ROOT_PASSWORD: qwerty
  28.  
  29.   phpmyadmin:
  30.     image: phpmyadmin/phpmyadmin
  31.     links:
  32.      - mariadb:db
  33.     ports:
  34.      - 8765:80
  35.     environment:
  36.       MYSQL_ROOT_PASSWORD: qwerty
  37.     depends_on:
  38.      - mariadb
Advertisement
Add Comment
Please, Sign In to add comment