Skip to content

Commit

Permalink
Create docker-compose.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
PunkPun authored and abcdefg30 committed Nov 25, 2024
1 parent b5bb318 commit 4000d29
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
services:
nginx-proxy:
image: nginxproxy/nginx-proxy
container_name: openra-nginx-proxy
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
networks:
- openra
ports:
- 80:80

jekyll:
image: jekyll/jekyll:3.8
command: jekyll serve
container_name: openra-jekyll
depends_on:
- nginx-proxy
volumes:
- .:/srv/jekyll
networks:
- openra
expose:
- 4000
environment:
VIRTUAL_PORT: 4000
VIRTUAL_HOST: localhost

networks:
openra:
driver: bridge

0 comments on commit 4000d29

Please sign in to comment.