Add Docker compose file example
This commit is contained in:
parent
d9fc5df080
commit
36db42f89b
2 changed files with 21 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
config/
|
20
compose.yaml
Normal file
20
compose.yaml
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue