From 36db42f89b1a5eeffb38feb9b6c34c23bcda7267 Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Sun, 18 May 2025 00:37:30 -0400 Subject: [PATCH] Add Docker compose file example --- .gitignore | 1 + compose.yaml | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 compose.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f733c4b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +config/ diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..648edde --- /dev/null +++ b/compose.yaml @@ -0,0 +1,20 @@ +--- +services: + docker-chromium: + image: git.mmbradley.ca/michaelbradley/docker-chromium:latest + container_name: docker-chromium + restart: unless-stopped + shm_size: 2gb + ports: + - '5800:5800' + volumes: + - ./config:/config + environment: + LANG: en_CA.UTF-8 + TZ: America/Toronto + KEEP_APP_RUNNING: 1 + WEB_AUDIO: 1 + WEB_AUTHENTICATION: 1 + WEB_AUTHENTICATION_USERNAME: username + WEB_AUTHENTICATION_PASSWORD: password + SECURE_CONNECTION: 1