Skip to content

Commit

Permalink
chore(docker): create initial docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
sotirangelo committed Jul 10, 2024
1 parent d958cbd commit c7d8156
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
services:
dvm:
container_name: neo4j_dvm
image: neo4j:latest
ports:
- 7474:7474
- 7687:7687
environment:
NEO4J_AUTH: neo4j/12345678
db:
container_name: postgres_db
image: postgres:latest
ports:
- 5432:5432
environment:
POSTGRES_DB: postgres
POSTGRES_USER: bdms
POSTGRES_PASSWORD: mysecretpassword
volumes:
- ./bdms-backup:/backup/bdms-backup

0 comments on commit c7d8156

Please sign in to comment.