Add Synology-compatible Dockerfile and docker-compose (v4.0.8)
This commit is contained in:
parent
bdfd537c6e
commit
b079c426d7
3 changed files with 26 additions and 1 deletions
21
.dockerignore.bak
Normal file
21
.dockerignore.bak
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
frontend/node_modules
|
||||
frontend/.next
|
||||
frontend/dist
|
||||
frontend/build
|
||||
backend/bin
|
||||
backend/logs
|
||||
node_modules
|
||||
.next
|
||||
.git
|
||||
.DS_Store
|
||||
videos
|
||||
data
|
||||
venv
|
||||
.gemini
|
||||
tmp*
|
||||
*.exe
|
||||
*.mac
|
||||
*-mac
|
||||
*-new
|
||||
page.html
|
||||
CUsersAdminDocumentskv-tubepage.html
|
||||
4
Dockerfile.diag
Normal file
4
Dockerfile.diag
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
FROM alpine
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN ls -laR
|
||||
|
|
@ -5,7 +5,7 @@ version: '3.8'
|
|||
|
||||
services:
|
||||
kv-tube-app:
|
||||
image: git.khoavo.myds.me/vndangkhoa/kv-tube:v4.0.7
|
||||
image: git.khoavo.myds.me/vndangkhoa/kv-tube:v4.0.8
|
||||
container_name: kv-tube-app
|
||||
platform: linux/amd64
|
||||
restart: unless-stopped
|
||||
|
|
|
|||
Loading…
Reference in a new issue