-
-
Save ddpruitt/a2ffbf3aab84d2abd77549de25bb01e1 to your computer and use it in GitHub Desktop.
Docker Obsidian with PlantUML
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
services: | |
obsidian: | |
image: 'obsidian-remote:latest' | |
container_name: obsidian-remote | |
restart: unless-stopped | |
ports: | |
- 8080:8080 | |
- 8443:8443 | |
volumes: | |
- "./Vaults:/vaults" | |
- "./Config:/config" | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=America/Chicago | |
# - DOCKER_MODS=linuxserver/mods:universal-git | |
# - CUSTOM_PORT="8080" | |
# - CUSTOM_HTTPS_PORT="8443" | |
# - CUSTOM_USER="" | |
# - PASSWORD="" | |
# - SUBFOLDER="" | |
plantuml: | |
image: plantuml/plantuml-server:jetty | |
container_name: plantuml | |
restart: unless-stopped | |
ports: | |
- 8081:8080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment