10 lines
230 B
YAML
10 lines
230 B
YAML
services:
|
|
web:
|
|
build: .
|
|
container_name: movie-db-web
|
|
ports:
|
|
- "5082:5082"
|
|
volumes:
|
|
- .:/app
|
|
restart: always
|
|
# command: python3 main.py # Use this if you want to run in foreground for debugging |