dockerconfig/docker-compose.yaml

30 lines
574 B
YAML
Raw Normal View History

2022-11-18 11:05:32 +01:00
version: "3.8"
networks:
internalnet:
driver: bridge
enable_ipv6: false
x-mail: &defaults
env_file: local.env
networks:
- internalnet
2022-10-29 12:07:29 +02:00
services:
2022-11-18 11:05:32 +01:00
hugo-site:
<<: *defaults
container_name: hugo-site
build: ./config/hugo
2022-11-13 17:58:23 +01:00
image: nginx:alpine
2022-11-18 11:05:32 +01:00
environment:
- VIRTUAL_HOST=lieuwe.${NGINX_HOST}
- VIRTUAL_PORT=6262
- VIRTUAL_PROTO=http
- LETSENCRYPT_HOST=lieuwe.${NGINX_HOST}
2022-11-13 12:36:43 +01:00
volumes:
2022-11-18 11:05:32 +01:00
- ./config/hugo/configure:/etc/nginx/templates/default.conf.template:ro,z
2022-11-13 17:58:23 +01:00
restart: always
2022-11-18 11:05:32 +01:00
expose:
- "6262"