You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

29 lines
531 B

version: "2"
services:
workstand:
build:
context: .
command: "bash -c 'python manage.py runserver 0.0.0.0:8000'"
ports:
- "8000:8000"
depends_on:
- webpack
links:
- redis
- db
volumes:
- ./bikeshop_project:/code
redis:
restart: always
db:
restart: always
webpack:
build:
context: .
dockerfile: Dockerfile-webpack
command: "npm run watch"
ports:
- "3000:3000"
restart: always
volumes:
- ./bikeshop_project:/code