Some checks are pending
Deploy Encrypted Todo App / build-and-push (push) Has started running
is!
13 lines
212 B
YAML
13 lines
212 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
image: ${IMAGE}
|
|
ports:
|
|
- "${APP_PORT:-3000}:3000"
|
|
environment:
|
|
NODE_ENV: production
|
|
volumes:
|
|
- ${ROOT_DIR}:/app/data
|
|
restart: unless-stopped
|