Skip to content

Commit

Permalink
chore: add debug environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
yujiosaka committed Oct 26, 2023
1 parent 5bfda73 commit d98312d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ services:
- .:/app
- node-modules:/app/node_modules
environment:
- MONGO_URI=mongodb://mongo:27017/test
- MYSQL_URI=mysql://root:password@mysql:3306/test
- POSTGRES_URI=postgres://postgres:postgres@postgres:5432/postgres
- REDIS_URI=redis://redis:6379
MONGO_URI: mongodb://mongo:27017/test
MYSQL_URI: mysql://root:password@mysql:3306/test
POSTGRES_URI: postgres://postgres:postgres@postgres:5432/postgres
REDIS_URI: redis://redis:6379
DEBUG: cronyx
command: sleep infinity
9 changes: 5 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ services:
- .:/app
- node-modules:/app/node_modules
environment:
- MONGO_URI=mongodb://mongodb:27017/test
- REDIS_URI=redis://redis:6379
- MYSQL_URI=mysql://root:password@mysql:3306/test
- POSTGRES_URI=postgres://postgres:postgres@postgres:5432/postgres
MONGO_URI: mongodb://mongodb:27017/test
REDIS_URI: redis://redis:6379
MYSQL_URI: mysql://root:password@mysql:3306/test
POSTGRES_URI: postgres://postgres:postgres@postgres:5432/postgres
DEBUG: cronyx
command: bun --watch test
restart: always
depends_on:
Expand Down

0 comments on commit d98312d

Please sign in to comment.