21 lines
425 B
YAML
21 lines
425 B
YAML
version: '3'
|
|
services:
|
|
nginx:
|
|
image: nginx
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./nginx:/etc/nginx/conf.d:ro
|
|
- ./public:/usr/share/nginx/html:ro
|
|
- ./assets:/usr/share/nginx/assets:ro
|
|
|
|
gemini:
|
|
image: adrianhesketh/gemini
|
|
volumes:
|
|
- ./public:/content:ro
|
|
- ./gem-cert:/certs:ro
|
|
environment:
|
|
- PORT=1965
|
|
- DOMAIN=jonathanh.co.uk
|
|
ports:
|
|
- "1965:1965"
|