Initial commit: WACE PLM with database initialization features
- Add Docker Compose configurations for dev, prod, and standalone environments - Add database initialization scripts (init-db.sh, init-db-docker.sh) - Add enhanced start-docker-linux.sh with DB init support - Add comprehensive database initialization guide - Support for automatic dbexport.pgsql import on first run - Include safety checks for production environment
This commit is contained in:
23
docker-compose.localdev.yml
Normal file
23
docker-compose.localdev.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
wace-plm:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: dockerfilelocal.dev
|
||||
container_name: wace-plm-dev
|
||||
ports:
|
||||
- "3643:8080"
|
||||
environment:
|
||||
CATALINA_OPTS: >-
|
||||
-DDB_URL=jdbc:postgresql://211.115.91.141:11132/waceplm
|
||||
-DDB_USERNAME=postgres
|
||||
-DDB_PASSWORD=ilshin0909!!
|
||||
volumes:
|
||||
- wace-plm-project_data:/data_storage
|
||||
- wace-plm-app_data:/path/inside/container
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
wace-plm-project_data:
|
||||
wace-plm-app_data:
|
||||
Reference in New Issue
Block a user