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.
 
 
 
 
 

22 lines
345 B

version: '3.8'
services:
padel:
build: ./servicios
command: gunicorn --bind 0.0.0.0:5000 padel:create_app()
volumes:
- padel_prod:/padel/instance
expose:
- 5000
env_file:
- ./.env.prod
nginx:
build: ./servicios/nginx
ports:
- 1337:80
depends_on:
- padel
volumes:
padel_prod: