16 lines
264 B
YAML
16 lines
264 B
YAML
version: "3"
|
|
|
|
services:
|
|
bh:
|
|
# build: .
|
|
image: brojs/todo/bh:$TAG
|
|
restart: always
|
|
env_file: ./.env
|
|
ports:
|
|
- 3003:3003
|
|
environment:
|
|
- PORT=${PORT}
|
|
- JWT_SECRET=${JWT_SECRET}
|
|
- MONGO_CONNECT_URL=${MONGO_CONNECT_URL}
|
|
|