You've already forked Curso-lenguaje-python
26 lines
471 B
YAML
26 lines
471 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
api:
|
|
container_name: app-python-flask-with-redis
|
|
build: .
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- '5000:5000'
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /etc/timezone:/etc/timezone:ro
|
|
depends_on:
|
|
- redis
|
|
|
|
redis:
|
|
image: redis:7.0-alpine
|
|
container_name: redis-python
|
|
ports:
|
|
- '6379:6379'
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /etc/timezone:/etc/timezone:ro
|
|
|