chore(deps): update ghcr.io/enchant97/note-mark-frontend docker tag to v0.9.0 (#1645)

This commit is contained in:
renovate[bot] 2023-12-27 22:43:43 +00:00 committed by GitHub
parent a8699a3252
commit e716f14900
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 22 deletions

View File

@ -5,8 +5,8 @@
"exposable": true, "exposable": true,
"port": 8567, "port": 8567,
"id": "notemark", "id": "notemark",
"tipi_version": 3, "tipi_version": 5,
"version": "0.8.0", "version": "alpine",
"categories": [ "categories": [
"utilities" "utilities"
], ],
@ -22,5 +22,8 @@
"env_variable": "NOTEMARK_SERVICE_SECRET" "env_variable": "NOTEMARK_SERVICE_SECRET"
} }
], ],
"supported_architectures": ["arm64", "amd64"] "supported_architectures": [
"arm64",
"amd64"
]
} }

View File

@ -1,5 +1,24 @@
version: "3.7" version: "3.7"
services: services:
notemark:
image: ghcr.io/enchant97/note-mark-frontend:0.9.0
container_name: notemark
restart: unless-stopped
networks:
- tipi_main_network
notemark-backend:
image: ghcr.io/enchant97/note-mark-backend:0.9.0
container_name: notemark-backend
restart: unless-stopped
networks:
- tipi_main_network
volumes:
- ${APP_DATA_DIR}/data:/data
environment:
JWT_SECRET: "${NOTEMARK_SERVICE_SECRET}"
CORS_ORIGINS: "*"
notemark-proxy: notemark-proxy:
container_name: notemark-proxy container_name: notemark-proxy
image: nginx:alpine image: nginx:alpine
@ -36,23 +55,4 @@ services:
traefik.http.routers.notemark-local.service: notemark traefik.http.routers.notemark-local.service: notemark
traefik.http.routers.notemark-local.tls: true traefik.http.routers.notemark-local.tls: true
notemark-backend:
image: ghcr.io/enchant97/note-mark-backend:0.9.0
container_name: notemark-backend
restart: unless-stopped
networks:
- tipi_main_network
volumes:
- ${APP_DATA_DIR}/data:/data
environment:
JWT_SECRET: "${NOTEMARK_SERVICE_SECRET}"
CORS_ORIGINS: "*"
notemark:
image: ghcr.io/enchant97/note-mark-frontend:0.8.0
container_name: notemark
restart: unless-stopped
networks:
- tipi_main_network