Skip to content

Commit f34ae22

Browse files
committed
chore: linting
1 parent 63cd8de commit f34ae22

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docker-compose.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
dockerfile: Dockerfile.dev
66
container_name: seamless-auth
77
ports:
8-
- "5312:5312"
8+
- '5312:5312'
99
volumes:
1010
- .:/app
1111
- /app/node_modules
@@ -17,7 +17,7 @@ services:
1717
postgres:
1818
condition: service_healthy
1919
healthcheck:
20-
test: ["CMD", "node", "./healthCheck.js"]
20+
test: ['CMD', 'node', './healthCheck.js']
2121
interval: 30s
2222
timeout: 5s
2323
retries: 3
@@ -27,13 +27,13 @@ services:
2727
restart: always
2828
container_name: db
2929
ports:
30-
- "5432:5432"
30+
- '5432:5432'
3131
environment:
3232
POSTGRES_USER: myuser
3333
POSTGRES_PASSWORD: mypassword
3434
POSTGRES_DB: postgres
3535
healthcheck:
36-
test: ["CMD-SHELL", "pg_isready -U myuser -d postgres"]
36+
test: ['CMD-SHELL', 'pg_isready -U myuser -d postgres']
3737
interval: 5s
3838
timeout: 5s
3939
retries: 5
@@ -44,12 +44,12 @@ services:
4444
image: seamless-admin:local
4545
container_name: seamless-admin
4646
ports:
47-
- "5174:80"
47+
- '5174:80'
4848
depends_on:
4949
- api
5050
environment:
5151
API_URL: http://localhost:5312
5252
restart: unless-stopped
5353

5454
volumes:
55-
pgdata:
55+
pgdata:

0 commit comments

Comments
 (0)