Files
picobook/docker-compose.yml
T

17 lines
307 B
YAML
Raw Normal View History

2026-06-10 21:47:30 -04:00
version: "3.9"
2023-10-29 19:28:07 +00:00
services:
2026-06-10 21:47:30 -04:00
app:
container_name: picobook-app
image: node
build:
context: .
dockerfile: Dockerfile
target: base
env_file: .env
ports:
- ${PORT}:${PORT}
profiles: ["prod"]
2023-10-29 19:28:07 +00:00
2026-06-10 21:47:30 -04:00
volumes:
data: {}