mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-03 15:07:53 -05:00
Add company_name to searchable fields in Takings overview (#594) Change tests to use elementBy instead of wait functions
40 lines
903 B
YAML
40 lines
903 B
YAML
version: '2'
|
|
|
|
volumes:
|
|
ospos:
|
|
driver: local
|
|
|
|
services:
|
|
test:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.test
|
|
php:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
links:
|
|
- mysql
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ospos:/var/www/html
|
|
- ospos:/app
|
|
environment:
|
|
- MYSQL_USERNAME=admin
|
|
- MYSQL_PASSWORD=pointofsale
|
|
- MYSQL_DB_NAME=ospos
|
|
- MYSQL_HOST_NAME=mysql
|
|
|
|
mysql:
|
|
image: mysql:5.7
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=pointofsale
|
|
- MYSQL_DATABASE=ospos
|
|
- MYSQL_USER=admin
|
|
- MYSQL_PASSWORD=pointofsale
|
|
ports:
|
|
- "3306:3306"
|
|
volumes:
|
|
- ./database/database.sql:/docker-entrypoint-initdb.d/database.sql
|