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
347 B

version: '2.2'
services:
lyrics:
build: ./servicios
command: gunicorn --bind 0.0.0.0:5000 lyrics:create_app()
volumes:
- lyrics_prod:/instance
expose:
- 5000
# env_file:
# - ./.env.prod
nginx:
build: ./servicios/nginx
ports:
- 1338:80
depends_on:
- lyrics
volumes:
lyrics_prod: