initial commit
This commit is contained in:
23
docker-compose.dev.yml
Normal file
23
docker-compose.dev.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
balotario-dev:
|
||||
build: .
|
||||
container_name: balotario-dev
|
||||
ports:
|
||||
- "5000:5000"
|
||||
environment:
|
||||
- FLASK_ENV=development
|
||||
- FLASK_DEBUG=true
|
||||
- DOCKER_CONTAINER=true
|
||||
volumes:
|
||||
# Montar código para desarrollo (hot reload)
|
||||
- .:/app
|
||||
- /app/venv # Excluir venv del montaje
|
||||
restart: "no"
|
||||
networks:
|
||||
- balotario-dev-network
|
||||
|
||||
networks:
|
||||
balotario-dev-network:
|
||||
driver: bridge
|
||||
Reference in New Issue
Block a user