I am new to Linux world. I've been windows users for past 20 years and now trying to host some tools at my home server. I've successfully installed DaviCal based on docker compose below... My issue is how to access the administration portal so I can add some users and play with it's sharing capabilities. When I access the web portal using local host, web page opens with message reading..."It works!" but not seeing any option to access the administration page. Any help would be greatly appreciated.
version: "3"
services:
db:
image: postgres
volumes:
- pgsql_data:/var/lib/postgresql/data
restart: always
environment:
POSTGRES_PASSWORD: "davical"
app:
image: tuxnvape/davical-standalone
volumes:
- davical_config:/config
restart: always
ports:
- 80:80
environment:
HOST_NAME: "example.org"
PGSQL_ROOT_PASS: "davical"
PASSDAVDB: "davical"
DBHOST: "db"
ADMINDAVICALPASS: "admin"
LANG: "fr_FR.UTF-8"
LC_ALL: "fr_FR.UTF-8"
DAVICAL_LANG: "fr_FR"
UPDATE_FROM_OLD: "false"
volumes:
davical_config:
pgsql_data:
I am new to Linux world. I've been windows users for past 20 years and now trying to host some tools at my home server. I've successfully installed DaviCal based on docker compose below... My issue is how to access the administration portal so I can add some users and play with it's sharing capabilities. When I access the web portal using local host, web page opens with message reading..."It works!" but not seeing any option to access the administration page. Any help would be greatly appreciated.
version: "3"
services:
db:
image: postgres
volumes:
- pgsql_data:/var/lib/postgresql/data
restart: always
environment:
POSTGRES_PASSWORD: "davical"
app:
image: tuxnvape/davical-standalone
volumes:
- davical_config:/config
restart: always
ports:
- 80:80
environment:
HOST_NAME: "example.org"
PGSQL_ROOT_PASS: "davical"
PASSDAVDB: "davical"
DBHOST: "db"
ADMINDAVICALPASS: "admin"
LANG: "fr_FR.UTF-8"
LC_ALL: "fr_FR.UTF-8"
DAVICAL_LANG: "fr_FR"
UPDATE_FROM_OLD: "false"
volumes:
davical_config:
pgsql_data: