Compare commits
No commits in common. "84f2174241a4c6b0cf33073b60461dd21c242a08" and "b49546005e4ac90946a094fe866f24ace5f47639" have entirely different histories.
84f2174241
...
b49546005e
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
```
|
```
|
||||||
podman network exists web || podman network create web
|
podman network exists web || podman network create web
|
||||||
podman-compose -f container-compose.yml -f container-compose.dev.yml up -d
|
podman-compose up -d
|
||||||
```
|
```
|
||||||
|
|
||||||
## Running in production
|
## Running in production
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
---
|
|
||||||
version: '3'
|
|
||||||
|
|
||||||
services:
|
|
||||||
reverse-proxy:
|
|
||||||
ports:
|
|
||||||
# The HTTP port
|
|
||||||
- "8080:80"
|
|
||||||
# The Web UI (enabled by --api.insecure=true)
|
|
||||||
- "8081:8080"
|
|
||||||
# TLS
|
|
||||||
- "8443:443"
|
|
|
@ -12,6 +12,13 @@ services:
|
||||||
- "--configFile=/traefik.toml"
|
- "--configFile=/traefik.toml"
|
||||||
environment:
|
environment:
|
||||||
- TRAEFIK_API_INSECURE=true
|
- TRAEFIK_API_INSECURE=true
|
||||||
|
ports:
|
||||||
|
# The HTTP port
|
||||||
|
- "8080:80"
|
||||||
|
# The Web UI (enabled by --api.insecure=true)
|
||||||
|
- "8081:8080"
|
||||||
|
# TLS
|
||||||
|
- "8443:443"
|
||||||
networks:
|
networks:
|
||||||
- web
|
- web
|
||||||
volumes:
|
volumes:
|
||||||
|
|
27
traefik.toml
27
traefik.toml
|
@ -1,27 +0,0 @@
|
||||||
[entryPoints]
|
|
||||||
[entryPoints.http]
|
|
||||||
address = ":80"
|
|
||||||
[entryPoints.https]
|
|
||||||
address = ":443"
|
|
||||||
[entryPoints.traefik]
|
|
||||||
address = ":8080"
|
|
||||||
|
|
||||||
[api]
|
|
||||||
dashboard = true
|
|
||||||
|
|
||||||
[acme]
|
|
||||||
email = "info@example.com"
|
|
||||||
storage = "acme.json"
|
|
||||||
entryPoint = "https"
|
|
||||||
onHostRule = true
|
|
||||||
[acme.httpChallenge]
|
|
||||||
entryPoint = "http"
|
|
||||||
|
|
||||||
[providers]
|
|
||||||
# [providers.docker]
|
|
||||||
[providers.file]
|
|
||||||
directory = "/traefik.conf.d/"
|
|
||||||
watch = true
|
|
||||||
|
|
||||||
[log]
|
|
||||||
level = 'INFO'
|
|
Loading…
Reference in New Issue