Compare commits

..

12 commits

Author SHA1 Message Date
9954959d5f current dist state 2022-10-11 14:15:05 +02:00
0aba03484e favicon 2022-10-11 14:14:40 +02:00
e44a0b362c final changes to website 2022-10-11 14:03:02 +02:00
5edced6568 update tut link 2022-10-08 13:02:28 +02:00
c6d2f3e447 plenumstermin 2022-10-07 14:47:13 +02:00
f8087e39c3 add 'los gehts' 2022-10-07 14:39:05 +02:00
4910b2e3dc add slides / website 2022-10-07 14:36:27 +02:00
79255c6470 Meeting änderungen 2022-10-07 14:35:33 +02:00
4bfd8615a9 edit docker-compose to work on ag-link.xyz 2022-10-07 13:57:52 +02:00
a3a4e35599 tiny changes to slides 2022-10-07 13:55:13 +02:00
246caf7392 tiny changes to website 2022-10-07 13:54:45 +02:00
3f53ff195d add dockercompose file for static serving 2022-09-11 15:23:09 +02:00

20
docker-compose.yml Normal file
View file

@ -0,0 +1,20 @@
version: '3'
services:
nginx:
image: nginx
container_name: art.ag-link.xyz
restart: unless-stopped
volumes:
- dist/website:/usr/share/nginx/html:ro
networks:
- proxy
labels:
- "traefik.enable=true"
- "traefik.http.routers.art.rule=Host(`art.ag-link.xyz`)"
- "traefik.http.routers.art.entrypoints=websecure"
- "traefik.http.routers.art.tls.certresolver=art-resolver"
networks:
proxy:
external: true