init
This commit is contained in:
commit
07b1161709
1 changed files with 24 additions and 0 deletions
24
compose.yaml
Normal file
24
compose.yaml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
services:
|
||||
app:
|
||||
image: 'docker.io/jc21/nginx-proxy-manager:latest'
|
||||
container_name: nginx-proxy-manager
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- '80:80'
|
||||
- '81:81'
|
||||
- '443:443'
|
||||
volumes:
|
||||
- npm_data:/data
|
||||
- npm_letsencrypt:/etc/letsencrypt
|
||||
networks:
|
||||
- nginx_default
|
||||
- forgejo_default # Add this line
|
||||
|
||||
networks:
|
||||
nginx_default:
|
||||
forgejo_default:
|
||||
external: true # Add this section
|
||||
|
||||
volumes:
|
||||
npm_data:
|
||||
npm_letsencrypt:
|
||||
Loading…
Add table
Add a link
Reference in a new issue