chore(rallly): update supported architectures
This commit is contained in:
parent
a7eb0fc799
commit
e90dfdbe5c
|
@ -13,7 +13,8 @@
|
||||||
"author": "lukevella",
|
"author": "lukevella",
|
||||||
"source": "https://github.com/lukevella/rallly",
|
"source": "https://github.com/lukevella/rallly",
|
||||||
"website": "https://rallly.co",
|
"website": "https://rallly.co",
|
||||||
"form_fields": [
|
"supported_architectures": ["amd64"],
|
||||||
|
"form_fields": [
|
||||||
{
|
{
|
||||||
"type": "random",
|
"type": "random",
|
||||||
"min": 32,
|
"min": 32,
|
||||||
|
@ -98,4 +99,4 @@
|
||||||
"env_variable": "RALLLY_SMTP_PWD"
|
"env_variable": "RALLLY_SMTP_PWD"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,22 +1,6 @@
|
||||||
services:
|
services:
|
||||||
rallly_db:
|
|
||||||
image: postgres:14
|
|
||||||
restart: always
|
|
||||||
volumes:
|
|
||||||
- ${APP_DATA_DIR}/data/db:/var/lib/postgresql/data
|
|
||||||
environment:
|
|
||||||
- POSTGRES_PASSWORD=${RALLLY_DB_PASSWORD}
|
|
||||||
- POSTGRES_DB=rallly
|
|
||||||
- POSTGRES_USER=tipi
|
|
||||||
networks:
|
|
||||||
- tipi_main_network
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "pg_isready -U tipi"]
|
|
||||||
interval: 5s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 5
|
|
||||||
|
|
||||||
rallly:
|
rallly:
|
||||||
|
container_name: rallly
|
||||||
image: lukevella/rallly:3.4.2
|
image: lukevella/rallly:3.4.2
|
||||||
restart: always
|
restart: always
|
||||||
depends_on:
|
depends_on:
|
||||||
|
@ -43,24 +27,46 @@ services:
|
||||||
# Main
|
# Main
|
||||||
traefik.enable: true
|
traefik.enable: true
|
||||||
traefik.http.middlewares.rallly-web-redirect.redirectscheme.scheme: https
|
traefik.http.middlewares.rallly-web-redirect.redirectscheme.scheme: https
|
||||||
traefik.http.services.rallly.loadbalancer.server.port: 3000
|
traefik.http.services.rallly.loadbalancer.server.port:
|
||||||
# Web
|
3000
|
||||||
|
# Web
|
||||||
traefik.http.routers.rallly-insecure.rule: Host(`${APP_DOMAIN}`)
|
traefik.http.routers.rallly-insecure.rule: Host(`${APP_DOMAIN}`)
|
||||||
traefik.http.routers.rallly-insecure.entrypoints: web
|
traefik.http.routers.rallly-insecure.entrypoints: web
|
||||||
traefik.http.routers.rallly-insecure.service: rallly
|
traefik.http.routers.rallly-insecure.service: rallly
|
||||||
traefik.http.routers.rallly-insecure.middlewares: rallly-web-redirect
|
traefik.http.routers.rallly-insecure.middlewares:
|
||||||
# Websecure
|
rallly-web-redirect
|
||||||
|
# Websecure
|
||||||
traefik.http.routers.rallly.rule: Host(`${APP_DOMAIN}`)
|
traefik.http.routers.rallly.rule: Host(`${APP_DOMAIN}`)
|
||||||
traefik.http.routers.rallly.entrypoints: websecure
|
traefik.http.routers.rallly.entrypoints: websecure
|
||||||
traefik.http.routers.rallly.service: rallly
|
traefik.http.routers.rallly.service: rallly
|
||||||
traefik.http.routers.rallly.tls.certresolver: myresolver
|
traefik.http.routers.rallly.tls.certresolver:
|
||||||
# Local domain
|
myresolver
|
||||||
|
# Local domain
|
||||||
traefik.http.routers.rallly-local-insecure.rule: Host(`rallly.${LOCAL_DOMAIN}`)
|
traefik.http.routers.rallly-local-insecure.rule: Host(`rallly.${LOCAL_DOMAIN}`)
|
||||||
traefik.http.routers.rallly-local-insecure.entrypoints: web
|
traefik.http.routers.rallly-local-insecure.entrypoints: web
|
||||||
traefik.http.routers.rallly-local-insecure.service: rallly
|
traefik.http.routers.rallly-local-insecure.service: rallly
|
||||||
traefik.http.routers.rallly-local-insecure.middlewares: rallly-web-redirect
|
traefik.http.routers.rallly-local-insecure.middlewares:
|
||||||
# Local domain secure
|
rallly-web-redirect
|
||||||
|
# Local domain secure
|
||||||
traefik.http.routers.rallly-local.rule: Host(`rallly.${LOCAL_DOMAIN}`)
|
traefik.http.routers.rallly-local.rule: Host(`rallly.${LOCAL_DOMAIN}`)
|
||||||
traefik.http.routers.rallly-local.entrypoints: websecure
|
traefik.http.routers.rallly-local.entrypoints: websecure
|
||||||
traefik.http.routers.rallly-local.service: rallly
|
traefik.http.routers.rallly-local.service: rallly
|
||||||
traefik.http.routers.rallly-local.tls: true
|
traefik.http.routers.rallly-local.tls: true
|
||||||
|
|
||||||
|
rallly_db:
|
||||||
|
container_name: rallly_db
|
||||||
|
image: postgres:14
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${APP_DATA_DIR}/data/db:/var/lib/postgresql/data
|
||||||
|
environment:
|
||||||
|
- POSTGRES_PASSWORD=${RALLLY_DB_PASSWORD}
|
||||||
|
- POSTGRES_DB=rallly
|
||||||
|
- POSTGRES_USER=tipi
|
||||||
|
networks:
|
||||||
|
- tipi_main_network
|
||||||
|
healthcheck:
|
||||||
|
test: ['CMD-SHELL', 'pg_isready -U tipi']
|
||||||
|
interval: 5s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 14 KiB |
Loading…
Reference in New Issue
Block a user