Repo init.

This commit is contained in:
Alexis Lahouze 2018-11-04 03:41:50 +01:00 committed by root
commit 8431ec0325
2 changed files with 24 additions and 0 deletions

1
README.md Normal file
View File

@ -0,0 +1 @@
My Gentoo binhost.

23
docker-compose.yml Normal file
View File

@ -0,0 +1,23 @@
version: '3.3'
services:
httpd:
image: nginx
networks:
- base
volumes:
- /srv/docker-data/gentoo-binhost/adora/packages:/usr/share/nginx/html/adora:ro
deploy:
labels:
- "traefik.enable=true"
- "traefik.docker.network=base"
- "traefik.app.frontend.rule=Host:gentoo.lahouze.org"
- "traefik.app.port=80"
- "traefik.app.protocol=http"
- "traefik.app.frontend.redirect.entryPoint=https"
networks:
base:
external: true
driver: overlay