Luke Murphy
3 months ago
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with
7 additions and
3 deletions
-
docker-compose.prod.yml
-
docker-compose.yml
|
|
@ -4,7 +4,9 @@ version: "3.8" |
|
|
|
services: |
|
|
|
jekyll: |
|
|
|
image: decentral1se/autonomic.zone:latest |
|
|
|
command: bundle exec jekyll serve --host 0.0.0.0 --trace |
|
|
|
command: | |
|
|
|
bundle exec |
|
|
|
jekyll serve --host 0.0.0.0 --trace |
|
|
|
environment: |
|
|
|
JEKYLL_ENV: production |
|
|
|
networks: |
|
|
|
|
|
@ -3,8 +3,10 @@ version: "3.8" |
|
|
|
|
|
|
|
services: |
|
|
|
jekyll: |
|
|
|
image: "jekyll/jekyll:4" |
|
|
|
command: jekyll serve --watch --force_polling --trace |
|
|
|
image: decentral1se/autonomic.zone:latest |
|
|
|
command: | |
|
|
|
bundle exec |
|
|
|
jekyll serve --watch --host 0.0.0.0 --force_polling --trace |
|
|
|
volumes: |
|
|
|
- ".:/srv/jekyll" |
|
|
|
ports: |
|
|
|