20 lines
400 B
YAML
20 lines
400 B
YAML
services:
|
|
nginx:
|
|
build:
|
|
context: ./
|
|
dockerfile: nginx.Dockerfile
|
|
ports:
|
|
- "7000:80"
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
|
- ./tienda_ilusion/don_confiao/static/frontend:/var/www/frontend/
|
|
django:
|
|
build:
|
|
context: ./
|
|
dockerfile: django.Dockerfile
|
|
volumes:
|
|
- ./tienda_ilusion:/app/
|
|
ports:
|
|
- 7001:9090
|
|
|