mirror of
https://github.com/lukevella/rallly-selfhosted.git
synced 2026-02-01 21:00:11 +01:00
15 lines
454 B
YAML
15 lines
454 B
YAML
version: "3.3"
|
|
services:
|
|
rallly:
|
|
hostname: rallly
|
|
rallly_nginx:
|
|
image: nginx:latest
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
|
restart: always
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.http.routers.rallly.entrypoints: websecure
|
|
traefik.http.routers.rallly.rule: Host(`example.com`)
|
|
traefik.http.routers.rallly.service: rallly
|
|
traefik.http.services.rallly.loadbalancer.server.port: "80" |