mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2025-12-31 13:37:54 -05:00
37 lines
880 B
YAML
37 lines
880 B
YAML
version: '2'
|
|
|
|
services:
|
|
test:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.test
|
|
sqlscript:
|
|
build:
|
|
context: database/
|
|
dockerfile: Dockerfile
|
|
php:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
links:
|
|
- mysql
|
|
ports:
|
|
- "80:80"
|
|
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
|