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, "available": true,
"exposable": true, "exposable": true,
"id": "movary", "id": "movary",
"tipi_version": 27, "tipi_version": 28,
"version": "0.60.0", "version": "0.60.0",
"categories": [ "categories": ["media"],
"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.", "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. ", "short_desc": "Movary is a self-hosted web application to track and rate your watched movies. ",
"author": "leepeuker", "author": "leepeuker",
@ -41,7 +39,5 @@
"env_variable": "MOVARY_TMDB_API_KEY" "env_variable": "MOVARY_TMDB_API_KEY"
} }
], ],
"supported_architectures": [ "supported_architectures": ["amd64"]
"amd64"
]
} }

View File

@ -4,9 +4,6 @@ services:
movary: movary:
image: leepeuker/movary:0.60.0 image: leepeuker/movary:0.60.0
container_name: movary container_name: movary
user: ${TIPI_UID}:${TIPI_GID}
group_add:
- ${TIPI_GID}
environment: environment:
- TMDB_API_KEY=${MOVARY_TMDB_API_KEY} - TMDB_API_KEY=${MOVARY_TMDB_API_KEY}
- TIMEZONE=${TZ} - TIMEZONE=${TZ}
@ -59,9 +56,6 @@ services:
image: leepeuker/movary:0.60.0 image: leepeuker/movary:0.60.0
container_name: movary-migration container_name: movary-migration
command: php bin/console.php database:migration:migrate command: php bin/console.php database:migration:migrate
user: ${TIPI_UID}:${TIPI_GID}
group_add:
- ${TIPI_GID}
environment: environment:
- TMDB_API_KEY=${MOVARY_TMDB_API_KEY} - TMDB_API_KEY=${MOVARY_TMDB_API_KEY}
- TIMEZONE=${TZ} - TIMEZONE=${TZ}
@ -85,9 +79,6 @@ services:
movary-db: movary-db:
image: mysql:8.0 image: mysql:8.0
container_name: movary-db container_name: movary-db
user: ${TIPI_UID}:${TIPI_GID}
group_add:
- ${TIPI_GID}
environment: environment:
MYSQL_DATABASE: "movary" MYSQL_DATABASE: "movary"
MYSQL_USER: "tipi" MYSQL_USER: "tipi"