Browse Source

changes for making it compatible with cloud version

master
jfederico 4 years ago
parent
commit
daff9376ef
2 changed files with 3 additions and 2 deletions
  1. 2
    1
      .gitignore
  2. 1
    1
      docker-compose.yml

+ 2
- 1
.gitignore View File

1
 .env
1
 .env
2
 
2
 
3
+/data*
4
+
3
 /nginx/log*
5
 /nginx/log*
4
 /nginx/ssl*
6
 /nginx/ssl*
5
 /nginx/sites-available*
7
 /nginx/sites-available*
7
 /nginx/letsencrypt/live/*
9
 /nginx/letsencrypt/live/*
8
 
10
 
9
 /redis/log*
11
 /redis/log*
10
-/redis/data*
11
 
12
 
12
 /scalelite/log*
13
 /scalelite/log*
13
 /scalelite/tmp*
14
 /scalelite/tmp*

+ 1
- 1
docker-compose.yml View File

30
     ports:
30
     ports:
31
       - 127.0.0.1:6379:6379
31
       - 127.0.0.1:6379:6379
32
     volumes:
32
     volumes:
33
-      - ./redis/data/:/data
33
+      - ./data/redis/:/data
34
 
34
 
35
   scalelite.api:
35
   scalelite.api:
36
     entrypoint: [bin/start]
36
     entrypoint: [bin/start]

Loading…
Cancel
Save