-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdevelopment.yml
More file actions
35 lines (33 loc) · 798 Bytes
/
development.yml
File metadata and controls
35 lines (33 loc) · 798 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
version: "3.7"
# https://docs.docker.com/compose/compose-file/compose-file-v3/
services:
nginx:
volumes:
- ./config/inventree_nginx.conf:/etc/nginx/templates/nginx.conf.template
ports:
- 9080:80
inventree:
image: inventree:development
environment:
- DEBUG=True
- DEBUG_TOOLBAR=True
- MIGRATE_STATIC=False
volumes:
- ./InvenTree:/usr/src/app
phpmyadmin:
image: phpmyadmin/phpmyadmin:latest
depends_on:
- mariadb
networks:
- mariadb
environment:
- MYSQL_ROOT_PASSWORD=CHANGEME
- MYSQL_DATABASE=inventree
- MYSQL_USER=inventree
- MYSQL_PASSWORD=CHANGEME
- PMA_HOST=mariadb
- PMA_PORT=3306
- PMA_USER=inventree
- PMA_PASSWORD=CHANGEME
ports:
- 6060:80