forked from opensourcepos/opensourcepos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
45 lines (41 loc) · 1002 Bytes
/
docker-compose.dev.yml
File metadata and controls
45 lines (41 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
version: '2'
volumes:
uploads:
driver: local
services:
sqlscript:
build:
context: database/
dockerfile: Dockerfile
ospos:
build:
context: .
dockerfile: Dockerfile.dev
container_name: ospos
restart: always
depends_on:
- mysql
ports:
- "80:80"
volumes:
- .:/app
environment:
- PHP_TIMEZONE=UTC
- MYSQL_USERNAME=admin
- MYSQL_PASSWORD=pointofsale
- MYSQL_DB_NAME=ospos
- MYSQL_HOST_NAME=mysql
- XDEBUG_CONFIG=remote_host=172.17.0.1
mysql:
image: mariadb:10.1.21
container_name: mysql
restart: always
ports:
- "3306:3306"
volumes_from:
- sqlscript
environment:
- MYSQL_ROOT_PASSWORD=pointofsale
- MYSQL_DATABASE=ospos
- MYSQL_USER=admin
- MYSQL_PASSWORD=pointofsale