Files
rproxy/roles/rproxy/templates/docker-compose.rproxy.yml.j2

16 lines
373 B
Plaintext
Raw Normal View History

2024-06-23 01:05:03 +03:00
version: '3.3'
services:
nginx:
image: nginx:latest
2024-07-09 21:15:44 +03:00
container_name: rproxy
2024-06-23 01:05:03 +03:00
restart: always
volumes:
2024-10-04 16:08:12 +03:00
- '{{ rproxy_dir }}/nginx.conf:/etc/nginx/nginx.conf'
- '{{ rproxy_dir }}/sites:/etc/nginx/sites'
- '{{ rproxy_dir }}/certs:/etc/nginx/certs'
- '{{ repo_data_dir }}:/repo'
2024-06-23 01:05:03 +03:00
ports:
- 443:443
2024-09-29 01:35:45 +03:00
- 80:80
- 9000:9000