mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2025-11-23 17:04:27 +01:00
cleanup repo
This commit is contained in:
3
examples/excalidraw/README.md
Normal file
3
examples/excalidraw/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# References
|
||||
|
||||
- https://github.com/excalidraw/excalidraw
|
||||
32
examples/excalidraw/docker-compose.yml
Normal file
32
examples/excalidraw/docker-compose.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
excalidraw:
|
||||
container_name: excalidraw
|
||||
image: excalidraw/excalidraw:latest
|
||||
ports:
|
||||
- "3000:80"
|
||||
restart: unless-stopped
|
||||
stdin_open: true
|
||||
healthcheck:
|
||||
disable: true
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
networks:
|
||||
- proxy
|
||||
#volumes:
|
||||
# - ./:/opt/node_app/app:delegated
|
||||
# - ./package.json:/opt/node_app/package.json
|
||||
# - ./yarn.lock:/opt/node_app/yarn.lock
|
||||
# - notused:/opt/node_app/app/node_modules
|
||||
#labels:
|
||||
# - traefik.enable=true
|
||||
# - traefik.http.routers.excalidraw.rule=Host(`draw.example.com`)
|
||||
# - traefik.http.services.excalidraw.loadbalancer.server.port=80
|
||||
# - traefik.docker.network=proxy
|
||||
# # Part for local lan services only; disable to expose externally
|
||||
# - traefik.http.routers.excalidraw.middlewares=local-ipwhitelist@file
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
Reference in New Issue
Block a user