fix(movary): remove deprectated TIPI_UID/TIPI_GID usages

This commit is contained in:
Nicolas Meienberger 2023-12-19 11:25:57 +01:00
parent 0c68def025
commit 534e12afe2
2 changed files with 5 additions and 18 deletions

View File

@ -5,11 +5,9 @@
"available": true,
"exposable": true,
"id": "movary",
"tipi_version": 27,
"tipi_version": 28,
"version": "0.60.0",
"categories": [
"media"
],
"categories": ["media"],
"description": "Movary is a self-hosted web application to track and rate your watched movies (like a digital movie diary). You can import/export your history and ratings from/to third parties like trakt.tv or letterboxd.com, scrobble your watches via Plex and Jellyfin and more.",
"short_desc": "Movary is a self-hosted web application to track and rate your watched movies. ",
"author": "leepeuker",
@ -41,7 +39,5 @@
"env_variable": "MOVARY_TMDB_API_KEY"
}
],
"supported_architectures": [
"amd64"
]
"supported_architectures": ["amd64"]
}

View File

@ -4,9 +4,6 @@ services:
movary:
image: leepeuker/movary:0.60.0
container_name: movary
user: ${TIPI_UID}:${TIPI_GID}
group_add:
- ${TIPI_GID}
environment:
- TMDB_API_KEY=${MOVARY_TMDB_API_KEY}
- TIMEZONE=${TZ}
@ -54,14 +51,11 @@ services:
traefik.http.routers.movary-local.entrypoints: websecure
traefik.http.routers.movary-local.service: movary
traefik.http.routers.movary-local.tls: true
movary-migration:
image: leepeuker/movary:0.60.0
container_name: movary-migration
command: php bin/console.php database:migration:migrate
user: ${TIPI_UID}:${TIPI_GID}
group_add:
- ${TIPI_GID}
environment:
- TMDB_API_KEY=${MOVARY_TMDB_API_KEY}
- TIMEZONE=${TZ}
@ -76,7 +70,7 @@ services:
- JELLYFIN_DEVICE_ID=${MOVARY_JELLYFIN_IDENTIFIER}
volumes:
- ${APP_DATA_DIR}/data/movary:/app/storage
depends_on:
depends_on:
movary-db:
condition: service_healthy
networks:
@ -85,9 +79,6 @@ services:
movary-db:
image: mysql:8.0
container_name: movary-db
user: ${TIPI_UID}:${TIPI_GID}
group_add:
- ${TIPI_GID}
environment:
MYSQL_DATABASE: "movary"
MYSQL_USER: "tipi"