15 lines
242 B
YAML
15 lines
242 B
YAML
version: "3"
|
|
services:
|
|
captain-app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
working_dir: /app
|
|
command: ["node", "index.js"]
|
|
ports:
|
|
- "8081:8081"
|
|
volumes:
|
|
- .:/app
|
|
env_file:
|
|
- stack.env
|