7 lines
283 B
YAML
Executable File
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
|