Add 'docker_portainer_stacks/jekyll/stack.yaml'

This commit is contained in:
sthope 2021-09-02 21:02:46 +02:00
parent ae975982a2
commit 7af942efb3

View File

@ -0,0 +1,16 @@
---
version: "3.8"
services:
jekyll:
image: "jekyll/jekyll:latest"
container_name: "jekyll"
hostname: "jekyll"
command: "jekyll serve --force_polling"
network_mode: "bridge"
environment:
- "TZ=Europe/Amsterdam"
volumes:
- "/home/sthope/jekyll:/srv/jekyll"
ports:
- "4000:4000"
restart: "unless-stopped"