26 lines
No EOL
497 B
YAML
26 lines
No EOL
497 B
YAML
services:
|
|
loba:
|
|
image: lucaslorentz/caddy-docker-proxy:2.9
|
|
ports:
|
|
- 8000:8000
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- caddy_data:/data
|
|
depends_on:
|
|
- web
|
|
web:
|
|
build: .
|
|
volumes:
|
|
- ./seed:/seed:ro
|
|
- ./.env.production:/.env:ro
|
|
env_file:
|
|
- .env.production
|
|
deploy:
|
|
mode: replicated
|
|
replicas: 4
|
|
labels:
|
|
caddy: ":8000"
|
|
caddy.reverse_proxy: "{{upstreams 8000}}"
|
|
|
|
volumes:
|
|
caddy_data: |