- Database manager works when use postgres_db postgres - Add volume for postgres - Add script to build docker - Documentation of docker usage
6 lines
196 B
Bash
Executable file
6 lines
196 B
Bash
Executable file
#!/usr/bin/env bash
|
|
cd docker
|
|
docker build -f Dockerfile.base -t technolibre/erplibre-base:12.0 .
|
|
docker build -f Dockerfile.prod.pkg -t technolibre/erplibre:12.0-pkg .
|
|
cd ..
|
|
docker-compose up -d
|