olivetin/docs/modules/ROOT/examples/reverse-proxies/etc/npm-docker-compose.yml

20 lines
434 B
YAML

services:
app:
image: 'jc21/nginx-proxy-manager:latest'
restart: unless-stopped
ports:
- '80:80'
- '81:81'
- '443:443'
volumes:
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
olivetin:
container_name: olivetin
image: jamesread/olivetin
volumes:
- ./OliveTin:/config # replace host path or volume as needed
ports:
- "1337:1337"
restart: unless-stopped