Skip to content

Commit bab3c28

Browse files
committed
fix: use strings for restart in docker override
1 parent 664a9bf commit bab3c28

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
/frontend/.nuxt
1111
/frontend/.eslintcache
1212
/frontend/.stylelintcache
13+
/frontend/.output
1314
/frontend/dist
1415
/frontend/src/site/static/sw.js
1516
/tmp

docker-compose.override.yml.dist

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ version: '3.9'
22
services:
33

44
mariadb:
5-
restart: no
5+
restart: "no"
66
ports:
77
- ${MARIADB_PORT:-3333}:3306
88

99
nginx:
10-
restart: no
10+
restart: "no"
1111
ports:
1212
- ${NODE_PORT_WS:-3001}:3001
1313

1414
php-fpm:
15-
restart: no
15+
restart: "no"
1616
environment:
1717
- PHP_IDE_CONFIG=serverName=VespDocker
1818
command: sh -c 'composer install && composer db:migrate && php-fpm'
1919

2020
node:
21-
restart: no
21+
restart: "no"
2222
# command: sh -c 'rm -rf /tmp/* && yarn && yarn analyze'
2323
command: sh -c 'rm -rf /tmp/* && yarn && yarn dev'

0 commit comments

Comments
 (0)