Initial commit
This commit is contained in:
commit
0cec39413f
116 changed files with 9683 additions and 0 deletions
25
docker-compose.yml
Normal file
25
docker-compose.yml
Normal 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:
|
Loading…
Add table
Add a link
Reference in a new issue