mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 13:46:59 +01:00
22 lines
378 B
YAML
22 lines
378 B
YAML
|
|
version: '2.2'
|
||
|
|
|
||
|
|
networks:
|
||
|
|
proxy-tier:
|
||
|
|
external:
|
||
|
|
name: nginx-proxy
|
||
|
|
|
||
|
|
services:
|
||
|
|
arch-mirror:
|
||
|
|
image: nginx:latest
|
||
|
|
expose:
|
||
|
|
- 80
|
||
|
|
environment:
|
||
|
|
- VIRTUAL_HOST=arch.banditlair.com
|
||
|
|
- VIRTUAL_NETWORK=nginx-proxy
|
||
|
|
- VIRTUAL_PORT=80
|
||
|
|
volumes:
|
||
|
|
- /srv/repo:/usr/share/nginx/html:ro
|
||
|
|
networks:
|
||
|
|
- proxy-tier
|
||
|
|
restart: always
|