Skip to content

Commit

Permalink
chore(docker): Rename to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel7004 committed Dec 24, 2024
1 parent 368eed8 commit 0b05cdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions compose.yml → docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ services:
frontend:
build:
context: ./frontendReact
dockerfile: Containerfile
dockerfile: Dockerfile
ports:
- '8080:80' # Map host port 8080 to container port 8000 (Deno app)
volumes:
- ./frontend:/app # Mount the local frontend directory to /app in the container
depends_on:
- backend
networks:
Expand All @@ -36,19 +34,16 @@ services:
volumes:
- ./backend:/app # Mount the local backend directory to /app in the container
depends_on:
- neo4j
- db
environment:
- NEO4J_URI=bolt://neo4j:7687
- NEO4J_USER=neo4j
- NEO4J_PASSWORD=neo4jpassword
networks:
- app-network

neo4j:
db:
image: neo4j:latest
ports:
- '7474:7474' # HTTP access
- '7687:7687' # Bolt access
volumes:
- neo4j_data:/data # Persist database data
- neo4j_logs:/logs # Persist database logs
Expand Down
File renamed without changes.

0 comments on commit 0b05cdc

Please sign in to comment.