12 lines
No EOL
198 B
YAML
12 lines
No EOL
198 B
YAML
version: "3.8"
|
|
services:
|
|
app:
|
|
build: .
|
|
command: python main.py
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- ./app:/python-flask
|
|
env_file:
|
|
- .env
|
|
container_name: resolv |