Skip to content

Commit

Permalink
add development environment to docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
jancimertel committed Oct 19, 2023
1 parent 8697068 commit 1626784
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,27 @@ services:
- "8080:8080" # required only for public access
- "28015:28015" # dashboard - required only for public access

inkvisitor-development:
build:
context: .
dockerfile: Dockerfile
args:
ENV: development
image: inkvisitor:development
container_name: inkvisitor-development
restart: always
<<: *logging
env_file:
- ./packages/server/env/.env.development
environment:
- DB_HOST=database
ports:
- "3000:3000"
volumes:
- ./inkvisitor-development-client:/app/client/dist
networks:
- inkvisitor

inkvisitor-production:
build:
context: .
Expand Down

0 comments on commit 1626784

Please sign in to comment.