First working dockerization
This commit is contained in:
31
docker-compose.yml
Normal file
31
docker-compose.yml
Normal file
@@ -0,0 +1,31 @@
|
||||
version: '2'
|
||||
services:
|
||||
mariadb:
|
||||
image: "mariadb"
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=123
|
||||
- MYSQL_USER=root
|
||||
volumes:
|
||||
- ./conf/mariadb-conf.d:/etc/mysql/conf.d
|
||||
ports:
|
||||
- "3306:3306"
|
||||
|
||||
redis:
|
||||
image: "redis:alpine"
|
||||
|
||||
frappe:
|
||||
build: .
|
||||
ports:
|
||||
- "8000:5000"
|
||||
stdin_open: true
|
||||
tty: true
|
||||
#links:
|
||||
# - redis
|
||||
# - mariadb
|
||||
network_mode: "host"
|
||||
depends_on:
|
||||
- "mariadb"
|
||||
- "redis"
|
||||
volumes:
|
||||
- ./code:/home/frappe/code
|
||||
|
||||
Reference in New Issue
Block a user