Docker compose
This commit is contained in:
parent
9b9791a601
commit
f757bc9f4e
1 changed files with 22 additions and 0 deletions
22
infra/docker-compose.yaml
Normal file
22
infra/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: xtablo
|
||||
|
||||
networks:
|
||||
default:
|
||||
external: true
|
||||
name: web
|
||||
|
||||
services:
|
||||
app:
|
||||
image: "jc21/nginx-proxy-manager:latest"
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
# these ports are in format <host-port>:<container-port>
|
||||
- "80:80" # public http port
|
||||
- "443:443" # public https port
|
||||
- "81:81" # admin web port
|
||||
expose:
|
||||
- "81"
|
||||
volumes:
|
||||
- ./data:/data
|
||||
- ./letsencrypt:/etc/letsencrypt
|
||||
- ./logs:/var/logs/nginx
|
||||
Loading…
Reference in a new issue