diff --git a/emerald-theory/hugo/config.toml b/emerald-theory/hugo/config.toml new file mode 100644 index 0000000..4240483 --- /dev/null +++ b/emerald-theory/hugo/config.toml @@ -0,0 +1,3 @@ +baseURL = 'http://example.org/' +languageCode = 'en-us' +title = 'My New Hugo Site' \ No newline at end of file diff --git a/emerald-theory/hugo/docker-compose.yml b/emerald-theory/hugo/docker-compose.yml new file mode 100644 index 0000000..67cb645 --- /dev/null +++ b/emerald-theory/hugo/docker-compose.yml @@ -0,0 +1,32 @@ +--- + +# Hugo +# Static Site Generator +# Created by Hugo +# ↳ https://github.com/gohugoio/hugo + +services: + hugo: + image: ghcr.io/gohugoio/hugo:latest + container_name: hugo + restart: unless-stopped + + networks: + - proxy +# ports: +# - 80:80 + + environment: + PUID: 1000 + PGID: 1000 + + volumes: + - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + - /home/fxequals/docker/hugo/website:/src + +networks: + proxy: + external: true + +# Documentation available at https://gohugo.io/documentation \ No newline at end of file diff --git a/n8n.yaml b/n8n.yaml new file mode 100644 index 0000000..c4c343e --- /dev/null +++ b/n8n.yaml @@ -0,0 +1,39 @@ +--- + +# n8n +# Event Automation +# Created by +# ↳ https://github.com/n8n-io/n8n + +services: + n8n: + image: docker.n8n.io/n8nio/n8n:latest + container_name: n8n + restart: unless-stopped + + networks: + - proxy +# ports: +# - 5678:5678 + + environment: + PUID: 1000 + PGID: 1000 + N8N_HOST: ${SUBDOMAIN}.${DOMAIN_NAME} + N8N_PORT: 5678 + N8N_PROTOCOL: https + NODE_ENV: production + WEBHOOK_URL: https://${SUBDOMAIN}.${DOMAIN_NAME}/ + GENERIC_TIMEZONE: ${GENERIC_TIMEZONE} + + volumes: + - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + - /home/fxequals/docker/n8n/data:/home/node/.n8n + - /home/fxequals/docker/n8n/files:/files + +networks: + proxy: + external: true + +# Documentation available at https://docs.n8n.io/ \ No newline at end of file