Skip to content

Commit

Permalink
Merge pull request #15 from ipb-halle/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
cav-ipb authored May 31, 2024
2 parents b1559db + e0889db commit 2fe3d42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use a base image with Node.js pre-installed
FROM node:14-alpine as build
FROM node:18-alpine as build

# Set the working directory inside the container
WORKDIR /app
Expand Down
4 changes: 2 additions & 2 deletions run-start.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
echo "run-docker.sh: Starting containers"
docker run --network one-health-network --name one-health-graphdb -e NEO4J_AUTH=none -v /data/onehealth/neo4j_data:/data -d neo4j
docker run --network one-health-network --name one-health-postgredb -e POSTGRES_USER=one_healt_huser -e POSTGRES_PASSWORD=one_health_password -e POSTGRES_DB=one_health -v /data/onehealth/postgre_data:/var/lib/postgresql/data -d rdkit-postgre
docker run --network one-health-network --name one-health-graphdb -e NEO4J_AUTH=none -v $(pwd)/data/neo4j_data:/data -d neo4j
docker run --network one-health-network --name one-health-postgredb -e POSTGRES_USER=one_healt_huser -e POSTGRES_PASSWORD=one_health_password -e POSTGRES_DB=one_health -v $(pwd)/data/postgres_data:/var/lib/postgresql/data -d rdkit-postgre
docker run --network one-health-network --name one-health-server -p 8080:8080 -d one-health-server
docker run --name one-health-client -p 3000:80 -d one-health-client

0 comments on commit 2fe3d42

Please sign in to comment.