File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ services:
23
23
context : ../../
24
24
dockerfile : docker/production/Dockerfile
25
25
target : dev
26
- command : sh -c "sh ./scripts/run.sh"
27
26
container_name : en_dev
28
27
env_file :
29
28
- ../../.env.development
@@ -35,6 +34,7 @@ services:
35
34
depends_on :
36
35
redis :
37
36
condition : service_healthy
37
+ command : sh -c "sh ./scripts/run.sh"
38
38
volumes :
39
39
redis_data :
40
40
driver : local
Original file line number Diff line number Diff line change @@ -9,20 +9,19 @@ services:
9
9
restart : always
10
10
ports :
11
11
- 6379:6379
12
- command : redis-server --save 60 1 --loglevel warning --requirepass 422af0c647e8c81cf20e
13
12
healthcheck :
14
13
test : ['CMD', 'redis-cli', 'ping']
15
14
interval : 5s
16
15
timeout : 30s
17
16
retries : 50
18
17
volumes :
19
18
- redis_data:/data
19
+ command : redis-server --save 60 1 --loglevel warning --requirepass 422af0c647e8c81cf20e
20
20
web :
21
21
image : easypanel-nextjs:0.0.1
22
22
build :
23
23
context : ../../
24
24
dockerfile : docker/production/Dockerfile
25
- command : sh -c "sh ./scripts/run.sh"
26
25
container_name : en_prod
27
26
env_file :
28
27
- ../../.env.production
@@ -34,6 +33,7 @@ services:
34
33
depends_on :
35
34
redis :
36
35
condition : service_healthy
36
+ command : sh -c "sh ./scripts/run.sh"
37
37
volumes :
38
38
redis_data :
39
39
driver : local
Original file line number Diff line number Diff line change @@ -9,20 +9,19 @@ services:
9
9
restart : always
10
10
ports :
11
11
- 6379:6379
12
- command : redis-server --save 60 1 --loglevel warning --requirepass 422af0c647e8c81cf20e
13
12
healthcheck :
14
13
test : ['CMD', 'redis-cli', 'ping']
15
14
interval : 5s
16
15
timeout : 30s
17
16
retries : 50
18
17
volumes :
19
18
- redis_data:/data
19
+ command : redis-server --save 60 1 --loglevel warning --requirepass 422af0c647e8c81cf20e
20
20
web :
21
21
image : easypanel-nextjs:0.0.1
22
22
build :
23
23
context : ../../
24
24
dockerfile : docker/production/Dockerfile
25
- command : sh -c "sh ./scripts/run.sh"
26
25
container_name : en_staging
27
26
env_file :
28
27
- ../../.env.staging
@@ -34,6 +33,7 @@ services:
34
33
depends_on :
35
34
redis :
36
35
condition : service_healthy
36
+ command : sh -c "sh ./scripts/run.sh"
37
37
volumes :
38
38
redis_data :
39
39
driver : local
You can’t perform that action at this time.
0 commit comments