-
Notifications
You must be signed in to change notification settings - Fork 421
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
179 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
version: "3.5" | ||
|
||
services: | ||
bunkerweb: | ||
image: bunkerity/bunkerweb:1.5.4 | ||
ports: | ||
- 80:8080 | ||
- 443:8443 | ||
labels: | ||
- "bunkerweb.INSTANCE=yes" | ||
environment: | ||
- SERVER_NAME=www.example.com | ||
- API_WHITELIST_IP=127.0.0.0/8 10.20.30.0/24 | ||
networks: | ||
- bw-universe | ||
- bw-services | ||
|
||
bw-scheduler: | ||
image: bunkerity/bunkerweb-scheduler:1.5.4 | ||
depends_on: | ||
- bunkerweb | ||
- bw-docker | ||
volumes: | ||
- bw-data:/data | ||
environment: | ||
- DOCKER_HOST=tcp://bw-docker:2375 | ||
networks: | ||
- bw-universe | ||
- bw-docker | ||
|
||
bw-docker: | ||
image: tecnativa/docker-socket-proxy:nightly | ||
volumes: | ||
- /var/run/docker.sock:/var/run/docker.sock:ro | ||
environment: | ||
- CONTAINERS=1 | ||
- LOG_LEVEL=warning | ||
networks: | ||
- bw-docker | ||
|
||
volumes: | ||
bw-data: | ||
|
||
networks: | ||
bw-universe: | ||
name: bw-universe | ||
ipam: | ||
driver: default | ||
config: | ||
- subnet: 10.20.30.0/24 | ||
bw-services: | ||
name: bw-services | ||
bw-docker: | ||
name: bw-docker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<div | ||
id="banner" | ||
tabindex="-1" | ||
role="list" | ||
class="relative flex justify-center z-50 gap-8 px-4 w-full" | ||
> | ||
<div | ||
role="listitem" | ||
aria-hidden="false" | ||
data-id="0" | ||
class="flex justify-center w-full left-0 transition-all duration-700 absolute dark:border-gray-700 md:px-4 py-6 dark:bg-gray-800 bg-gray-50 border border-b border-gray-200" | ||
> | ||
<p class="text-sm font-light text-gray-500 dark:text-gray-400"> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. | ||
<a | ||
class="font-medium underline text-primary-600 dark:text-primary-500 hover:no-underline" | ||
href="#" | ||
> | ||
link | ||
</a> | ||
Illo beatae dicta voluptate aperiam facilis ducimus culpa ad repudiandae | ||
error, autem molestiae quisquam aliquam rem sunt dolorum qui rerum maxime | ||
corporis. | ||
</p> | ||
</div> | ||
<div | ||
role="listitem" | ||
aria-hidden="true" | ||
data-id="1" | ||
class="left-full flex justify-center w-full transition-all duration-700 absolute dark:border-gray-700 md:px-4 py-6 dark:bg-gray-800 bg-gray-50 border border-b border-gray-200" | ||
> | ||
<p class="text-sm font-light text-gray-500 dark:text-gray-400"> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. | ||
<a | ||
class="font-medium underline text-primary-600 dark:text-primary-500 hover:no-underline" | ||
href="#" | ||
> | ||
link | ||
</a> | ||
Illo beatae dicta voluptate aperiam facilis ducimus culpa ad repudiandae | ||
error, autem molestiae quisquam aliquam rem sunt dolorum qui rerum maxime | ||
corporis. | ||
</p> | ||
</div> | ||
<div | ||
role="listitem" | ||
aria-hidden="true" | ||
data-id="2" | ||
class="left-full flex justify-center w-full transition-all duration-700 absolute dark:border-gray-700 md:px-4 py-6 dark:bg-gray-800 bg-gray-50 border border-b border-gray-200" | ||
> | ||
<p class="text-sm font-light text-gray-500 dark:text-gray-400"> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. | ||
<a | ||
class="font-medium underline text-primary-600 dark:text-primary-500 hover:no-underline" | ||
href="#" | ||
> | ||
link | ||
</a> | ||
Illo beatae dicta voluptate aperiam facilis ducimus culpa ad repudiandae | ||
error, autem molestiae quisquam aliquam rem sunt dolorum qui rerum maxime | ||
corporis. | ||
</p> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters