fix(movary): remove deprectated TIPI_UID/TIPI_GID usages
This commit is contained in:
parent
0c68def025
commit
534e12afe2
|
@ -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"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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}
|
||||||
|
@ -54,14 +51,11 @@ services:
|
||||||
traefik.http.routers.movary-local.entrypoints: websecure
|
traefik.http.routers.movary-local.entrypoints: websecure
|
||||||
traefik.http.routers.movary-local.service: movary
|
traefik.http.routers.movary-local.service: movary
|
||||||
traefik.http.routers.movary-local.tls: true
|
traefik.http.routers.movary-local.tls: true
|
||||||
|
|
||||||
movary-migration:
|
movary-migration:
|
||||||
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}
|
||||||
|
@ -76,7 +70,7 @@ services:
|
||||||
- JELLYFIN_DEVICE_ID=${MOVARY_JELLYFIN_IDENTIFIER}
|
- JELLYFIN_DEVICE_ID=${MOVARY_JELLYFIN_IDENTIFIER}
|
||||||
volumes:
|
volumes:
|
||||||
- ${APP_DATA_DIR}/data/movary:/app/storage
|
- ${APP_DATA_DIR}/data/movary:/app/storage
|
||||||
depends_on:
|
depends_on:
|
||||||
movary-db:
|
movary-db:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
networks:
|
networks:
|
||||||
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user