Initial commit

This commit is contained in:
Stanislav Kolotinskiy 2021-03-19 17:31:38 +02:00
commit 0cec39413f
116 changed files with 9683 additions and 0 deletions

25
docker-compose.yml Normal file
View file

@ -0,0 +1,25 @@
version: '3.8'
services:
bookstore:
build:
context: .
ports:
- 18210:3000
volumes:
- ./:/app:delegated
- bundle_volume:/usr/local/bundle
env_file:
- docker/.env
webpack_dev_server:
image: bookstore_bookstore
volumes:
- ./:/app:delegated
- bundle_volume:/usr/local/bundle
env_file:
- docker/.env
entrypoint: ["/webpack_entrypoint.sh"]
command: ["./bin/webpack-dev-server"]
volumes:
bundle_volume: