|
@@ -5,3 +5,11 @@ services:
|
|
|
restart: always
|
|
restart: always
|
|
|
ports:
|
|
ports:
|
|
|
- "8000:1993"
|
|
- "8000:1993"
|
|
|
|
|
+ environment:
|
|
|
|
|
+ - APPLICATION_NAME=${APPLICATION_NAME-My Deno Application}
|
|
|
|
|
+ - VERSION=${VERSION-0.1.0}
|
|
|
|
|
+ - DEBUG_LEVEL=${DEBUG_LEVEL-INFO}
|
|
|
|
|
+ - GREETING=${GREETING-hello world!}
|
|
|
|
|
+ volumes:
|
|
|
|
|
+ - ./src:/app/src:ro
|
|
|
|
|
+ command: ["deno", "task", "dev"]
|