-
Notifications
You must be signed in to change notification settings - Fork 0
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
Mike Zrimsek
committed
Aug 8, 2024
1 parent
5978d0e
commit 860524c
Showing
4 changed files
with
36 additions
and
0 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
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,3 @@ | ||
# Baikal | ||
|
||
Baikal is a lightweight CalDAV and CardDAV server based on PHP, SQLite and SabreDAV. |
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,10 @@ | ||
services: | ||
baikal: | ||
image: ckulka/baikal:nginx | ||
container_name: baikal | ||
ports: | ||
- "8428:80" | ||
volumes: | ||
- ${CONFIG_DIR}/baikal/config:/var/www/baikal/config | ||
- ${CONFIG_DIR}/baikal/data:/var/www/baikal/Specific | ||
restart: unless-stopped |
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,22 @@ | ||
services: | ||
baikal: | ||
image: ckulka/baikal:nginx | ||
container_name: baikal | ||
volumes: | ||
- ${CONFIG_DIR}/baikal/config:/var/www/baikal/config | ||
- ${CONFIG_DIR}/baikal/data:/var/www/baikal/Specific | ||
networks: | ||
- public | ||
labels: | ||
- "traefik.enable=true" | ||
- "traefik.http.routers.baikal.rule=Host(`${APP_URL}`)" | ||
- "traefik.http.routers.baikal.entrypoints=websecure" | ||
- "traefik.http.routers.baikal.tls.certresolver=tlsresolver" | ||
- "traefik.http.routers.baikal.middlewares=authelia@docker" | ||
- "com.centurylinklabs.watchtower.enable=true" | ||
restart: unless-stopped | ||
|
||
networks: | ||
public: | ||
external: | ||
name: ${TRAEFIK_PUBLIC_NETWORK} |