mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
19 lines
382 B
Bash
19 lines
382 B
Bash
YOURLS_IMAGE=yourls:latest
|
|
MARIADB_IMAGE=mariadb:11
|
|
YOURLS_RESTART=unless-stopped
|
|
VOL_PATH=/data
|
|
YOURLS_PORT=8080
|
|
|
|
# Site URL (public URL used in generated short links)
|
|
YOURLS_SITE=http://localhost:8080
|
|
|
|
# Admin login
|
|
YOURLS_USER=admin
|
|
YOURLS_PASS=changeme
|
|
|
|
# Database
|
|
YOURLS_DB_NAME=yourls
|
|
YOURLS_DB_USER=yourls
|
|
YOURLS_DB_PASSWORD=changeme
|
|
YOURLS_MYSQL_ROOT_PASSWORD=changeme-root
|