17 lines
307 B
YAML
17 lines
307 B
YAML
version: "3.9"
|
|
services:
|
|
app:
|
|
container_name: picobook-app
|
|
image: node
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
target: base
|
|
env_file: .env
|
|
ports:
|
|
- ${PORT}:${PORT}
|
|
profiles: ["prod"]
|
|
|
|
volumes:
|
|
data: {}
|