diff --git a/apps/notemark/config.json b/apps/notemark/config.json index 8ab8341c..4c7a2d41 100644 --- a/apps/notemark/config.json +++ b/apps/notemark/config.json @@ -5,8 +5,8 @@ "exposable": true, "port": 8567, "id": "notemark", - "tipi_version": 3, - "version": "0.8.0", + "tipi_version": 5, + "version": "alpine", "categories": [ "utilities" ], @@ -22,5 +22,8 @@ "env_variable": "NOTEMARK_SERVICE_SECRET" } ], - "supported_architectures": ["arm64", "amd64"] + "supported_architectures": [ + "arm64", + "amd64" + ] } diff --git a/apps/notemark/docker-compose.yml b/apps/notemark/docker-compose.yml index 004c544f..c95539a8 100644 --- a/apps/notemark/docker-compose.yml +++ b/apps/notemark/docker-compose.yml @@ -1,5 +1,24 @@ version: "3.7" 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: container_name: notemark-proxy image: nginx:alpine @@ -36,23 +55,4 @@ services: traefik.http.routers.notemark-local.service: notemark 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 -