-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
44 lines (38 loc) · 1022 Bytes
/
compose.yaml
File metadata and controls
44 lines (38 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: traefik
x-daemonless:
title: "Traefik"
icon: ":material-server-network:"
category: "Infrastructure"
description: "Modern HTTP reverse proxy and load balancer on FreeBSD."
upstream_url: "https://github.com/traefik/traefik"
web_url: "https://traefik.io/"
freshports_url: "https://www.freshports.org/net/traefik/"
user: "bsd"
mlock: false
appjail: true
docs:
env:
PUID: "User ID for the application process"
PGID: "Group ID for the application process"
TZ: "Timezone for the container"
volumes:
/config: "Configuration directory (traefik.yml, dynamic/, letsencrypt/)"
ports:
80: "HTTP"
443: "HTTPS"
8080: "Dashboard/API"
services:
traefik:
image: ghcr.io/daemonless/traefik:latest
container_name: traefik
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- /path/to/containers/traefik:/config
ports:
- "80:80"
- "443:443"
- "8080:8080"