26 lines
361 B
YAML
26 lines
361 B
YAML
version: '3.9'
|
|
services:
|
|
flask:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: .
|
|
environment:
|
|
# DATABASE DETAILS
|
|
- DBNAME=test_db
|
|
- DBUSER=postgres
|
|
- DBPASS=postgres
|
|
- DBPORT=5450
|
|
- DBHOST=0.0.0.0
|
|
|
|
ports:
|
|
- "8050:1602"
|
|
|
|
networks:
|
|
- test-net
|
|
|
|
|
|
networks:
|
|
test-net:
|
|
external: true
|
|
|