Files
helsinki/Pt12/part12-containers-applications/todo-app/todo-backend/docker-compose.yml
T
2024-09-30 15:32:50 +03:00

7 lines
283 B
YAML
Executable File

services:
app: # The name of the service, can be anything
image: todo-backend # Declares which image to use
build: . # Declares where to build if image is not found
ports: # Declares the ports to publish
- 3000:3000