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 63bc2da commit 446953aCopy full SHA for 446953a
infra/main.tf
@@ -228,6 +228,15 @@ docker run -d \
228
-v /dockerProjects/npm_1/volumes/etc/letsencrypt:/etc/letsencrypt \
229
jc21/nginx-proxy-manager:latest
230
231
+# redis 설치
232
+docker run -d \
233
+ --name=redis_1 \
234
+ --restart unless-stopped \
235
+ --network common \
236
+ -p 6379:6379 \
237
+ -e TZ=Asia/Seoul \
238
+ redis --requirepass ${var.password_1}
239
+
240
# mysql 설치
241
docker run -d \
242
--name mysql_1 \
0 commit comments