15 lines
488 B
YAML
15 lines
488 B
YAML
|
|
# Ocular documentation can be found here:
|
||
|
|
# https://simonwep.github.io/ocular/pages/deploy.html
|
||
|
|
|
||
|
|
services:
|
||
|
|
ocular:
|
||
|
|
image: ghcr.io/simonwep/ocular:v2
|
||
|
|
restart: unless-stopped
|
||
|
|
volumes:
|
||
|
|
- ./data:/data/genesis
|
||
|
|
ports:
|
||
|
|
- ${PORT:-3030}:80
|
||
|
|
environment:
|
||
|
|
- GENESIS_JWT_SECRET=${GENESIS_JWT_SECRET:?Required Variable}
|
||
|
|
- GENESIS_CREATE_USERS=${GENESIS_CREATE_USERS:-'admin!:admin'}
|
||
|
|
- GENESIS_JWT_TOKEN_EXPIRATION=${GENESIS_JWT_TOKEN_EXPIRATION:-60}
|