We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6f3bb8 commit a96ebe6Copy full SHA for a96ebe6
README.md
@@ -24,7 +24,7 @@ add the below code snippets in "docker-compose.yml" file.
24
node:
25
depends_on:
26
- webserver
27
- image: 'node:latest'
+ image: 'node:latest'
28
container_name: node
29
networks:
30
- backend
@@ -37,11 +37,11 @@ add the below code snippets in "docker-compose.yml" file.
37
hostname: node
38
restart: unless-stopped
39
ports:
40
- - '3000:3000'
+ - '3000:3000'
41
environment:
42
NODE_ENV: 'production'
43
TZ: '${LOCAL_TIMEZONE}'
44
- labels:
+ labels:
45
- 'docker-volume-backup.stop-during-backup=true'
46
command: bash -c 'apt-get update && apt-get upgrade -y && apt-get install -y openssh-server && service ssh start && npm init -y && tail -f /dev/null'
47
```
0 commit comments