1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/yourls/README.md

85 lines
1.8 KiB
Markdown
Raw Normal View History

2019-02-12 10:28:09 +00:00
yourls
======
[YOURLS][1] stands for Your Own URL Shortener. It is a small set of PHP scripts
that will allow you to run your own URL shortening service (a la TinyURL or
Bitly).
2019-02-28 07:10:14 +00:00
## docker-compose.yml
```yaml
2020-06-02 08:40:14 +00:00
version: '3.8'
2019-02-28 07:10:14 +00:00
services:
yourls:
2020-06-02 08:40:14 +00:00
image: yourls:1.7
2019-02-28 07:10:14 +00:00
ports:
- "8080:80"
environment:
- YOURLS_DB_HOST=mysql
- YOURLS_DB_USER=root
- YOURLS_DB_PASS=root
- YOURLS_DB_NAME=yourls
- YOURLS_USER=admin
- YOURLS_PASS=admin
- YOURLS_SITE=https://yourls.easypi.pro
depends_on:
- mysql
2020-06-02 08:40:14 +00:00
restart: unless-stopped
2019-02-28 07:10:14 +00:00
mysql:
image: mysql:5.7
volumes:
- ./data:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=yourls
2020-06-02 08:40:14 +00:00
restart: unless-stopped
2019-02-28 07:10:14 +00:00
```
## Up and Running
2019-02-27 07:57:52 +00:00
```bash
$ docker-compose up -d
$ docker cp yourls_yourls_1:/var/www/html/user/config.php .
$ vi config.php
$ docker cp config.php yourls_yourls_1:/var/www/html/user/
$ docker-compose exec chown www-data:www-data /var/www/html/user/config.php
$ docker-compose exec chmod 664 /var/www/html/user/config.php
```
File: config.php
```php
/** Username(s) and password(s) allowed to access the site. Passwords either in plain text or as encrypted hashes
** YOURLS will auto encrypt plain text passwords in this file
** Read http://yourls.org/userpassword for more information */
$yourls_user_passwords = [
'user1' => 'secret1',
'user2' => 'secret2',
];
```
2019-02-28 07:43:28 +00:00
## Backup and Restore
2019-02-28 07:10:14 +00:00
```bash
2019-02-28 07:43:28 +00:00
# backup
$ docker-compose exec -T mysql mysqldump -uroot -proot yourls > yourls-$(date +%F).sql
# restore
$ docker exec -i yourls_mysql_1 mysql -uroot -proot yourls < yourls-$(date +%F -d yesterday).sql
2019-02-28 07:10:14 +00:00
```
2020-06-02 08:40:14 +00:00
## Upgrade Image
- backup config.php
- backup plugins
- remove container (with volume)
- create container
- restore plugins
- restore config.php
- restart container
2019-02-12 10:28:09 +00:00
[1]: http://yourls.org/