kasmvnc-apps/docker-compose.yml

47 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2023-11-12 19:28:51 +00:00
version: "2.1"
services:
2023-11-18 17:25:34 +00:00
# logseq:
# build:
# context: .
# dockerfile: Dockerfile.logseq
# container_name: logseq
# security_opt:
# - seccomp:unconfined #optional
# environment:
# # Recommended to set PUID and PGID to avoid permission issues. You can use `id` to get your uid and gid.
# - PUID=1000
# - PGID=1000
# - TZ=Etc/UTC
# # HTTP authentification username and password
# # It seems the container user will be "abc" even if custom user is set.
# - CUSTOM_USER=abc
# - PASSWORD=password
# volumes:
# - ./logseq:/config
# ports:
# - 2000:3000
# - 2001:3001
# restart: unless-stopped
session:
2023-11-12 19:28:51 +00:00
build:
context: .
2023-11-18 17:25:34 +00:00
dockerfile: Dockerfile.session
container_name: session
security_opt:
- seccomp:unconfined #optional
2023-11-12 19:28:51 +00:00
environment:
# Recommended to set PUID and PGID to avoid permission issues. You can use `id` to get your uid and gid.
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
# HTTP authentification username and password
# It seems the container user will be "abc" even if custom user is set.
- CUSTOM_USER=abc
- PASSWORD=password
volumes:
2023-11-18 17:25:34 +00:00
- ./session:/config
2023-11-12 19:28:51 +00:00
ports:
2023-11-18 17:25:34 +00:00
- 3000:3000
- 3001:3001
2023-11-12 19:28:51 +00:00
restart: unless-stopped