fix(proxitok): correct images

This commit is contained in:
Nicolas Meienberger 2023-11-02 20:59:54 +01:00
parent 58361cfedc
commit 313e627767
2 changed files with 10 additions and 13 deletions

View File

@ -5,12 +5,10 @@
"exposable": true, "exposable": true,
"port": 8118, "port": 8118,
"id": "proxitok", "id": "proxitok",
"categories": [ "categories": ["social"],
"social"
],
"description": "", "description": "",
"tipi_version": 4, "tipi_version": 5,
"version": "2.4.9.2", "version": "master",
"short_desc": "Open source alternative frontend for TikTok made using PHP ", "short_desc": "Open source alternative frontend for TikTok made using PHP ",
"author": "pablouser1", "author": "pablouser1",
"source": "https://github.com/pablouser1/ProxiTok", "source": "https://github.com/pablouser1/ProxiTok",

View File

@ -1,17 +1,17 @@
version: "3.8"
services: services:
proxitok: proxitok:
container_name: proxitok container_name: proxitok
image: ghcr.io/pablouser1/proxitok:v2.4.9.2 image: ghcr.io/pablouser1/proxitok:master
restart: unless-stopped restart: unless-stopped
ports: ports:
- ${APP_PORT}:80 - ${APP_PORT}:8080
environment: environment:
- "LATTE_CACHE=/cache" - "LATTE_CACHE=/cache"
- "API_CACHE=redis" - "API_CACHE=redis"
- "REDIS_HOST=proxitok-redis" - "REDIS_HOST=proxitok-redis"
- "REDIS_PORT=6379" - "REDIS_PORT=6379"
- "API_SIGNER=remote"
- "API_SIGNER_URL=http://proxitok-signer:8080/signature" - "API_SIGNER_URL=http://proxitok-signer:8080/signature"
volumes: volumes:
- "proxitok-cache:/cache" - "proxitok-cache:/cache"
@ -24,7 +24,7 @@ services:
# Main # Main
traefik.enable: true traefik.enable: true
traefik.http.middlewares.proxitok-web-redirect.redirectscheme.scheme: https traefik.http.middlewares.proxitok-web-redirect.redirectscheme.scheme: https
traefik.http.services.proxitok.loadbalancer.server.port: 80 traefik.http.services.proxitok.loadbalancer.server.port: 8080
# Web # Web
traefik.http.routers.proxitok-insecure.rule: Host(`${APP_DOMAIN}`) traefik.http.routers.proxitok-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.proxitok-insecure.entrypoints: web traefik.http.routers.proxitok-insecure.entrypoints: web
@ -48,11 +48,11 @@ services:
proxitok-redis: proxitok-redis:
container_name: proxitok-redis container_name: proxitok-redis
image: docker.io/redis:7-alpine image: redis:7-alpine
restart: unless-stopped restart: unless-stopped
command: redis-server --save 60 1 --loglevel warning command: redis-server --save 60 1 --loglevel warning
networks: networks:
- tipi_main_network - tipi_main_network
proxitok-signer: proxitok-signer:
container_name: proxitok-signer container_name: proxitok-signer
@ -60,6 +60,5 @@ services:
networks: networks:
- tipi_main_network - tipi_main_network
volumes: volumes:
proxitok-cache: proxitok-cache: