16 lines
362 B
YAML
16 lines
362 B
YAML
---
|
|
- name: nginx
|
|
community.docker.docker_container:
|
|
name: nginx
|
|
image: 'jc21/nginx-proxy-manager:latest'
|
|
restart_policy: unless-stopped
|
|
ports:
|
|
- '80:80'
|
|
- '81:81'
|
|
- '443:443'
|
|
volumes:
|
|
- "{{ docker_homepath }}/data:/data"
|
|
- "{{ docker_homepath }}/letsencrypt:/etc/letsencrypt"
|
|
networks:
|
|
- name: http
|