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.
|
version: '2'
|
|
services:
|
|
web:
|
|
build: .
|
|
command: python3 app.py
|
|
ports:
|
|
- "80:5000"
|
|
volumes:
|
|
- .:/code:Z
|
|
- ./user:/home/app:Z
|
|
depends_on:
|
|
- redis
|
|
redis:
|
|
image: redis
|