Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: '2'
- services:
- # The Application
- app:
- build:
- context: ./
- dockerfile: app.dockerfile
- working_dir: /Users/sr/Sites/zogo-commerce/public
- volumes:
- - ./:/var/www/html/zogo-commerce
- environment:
- - "DB_PORT=3306"
- - "DB_HOST=127.0.0.1"
- # The Web Server
- web:
- build:
- context: ./
- dockerfile: web.dockerfile
- working_dir: /Users/sr/Sites/zogo-commerce
- volumes_from:
- - app
- ports:
- - 9090:80
- # The Database
- database:
- image: mariadb
- volumes:
- - dbdata:/var/lib/mysql
- environment:
- - "MYSQL_DATABASE=zogo_commerce"
- - "MYSQL_USER=root"
- - "MYSQL_PASSWORD=root1234"
- - "MYSQL_ROOT_PASSWORD=root1234"
- ports:
- - "33061:3306"
- volumes:
- dbdata:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement