Skip to content

Instantly share code, notes, and snippets.

@ddpruitt
Created March 13, 2025 14:24
Show Gist options
  • Save ddpruitt/a2ffbf3aab84d2abd77549de25bb01e1 to your computer and use it in GitHub Desktop.
Save ddpruitt/a2ffbf3aab84d2abd77549de25bb01e1 to your computer and use it in GitHub Desktop.
Docker Obsidian with PlantUML
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