Skip to content

Commit fc1ae7a

Browse files
authored
Reflect latest changes in YOURLS docs (#2605)
1 parent 36d2250 commit fc1ae7a

File tree

3 files changed

+48
-22
lines changed

3 files changed

+48
-22
lines changed

yourls/compose.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
1+
name: yourls
12
services:
2-
33
yourls:
44
image: yourls
55
restart: always
6+
depends_on:
7+
- mysql
68
ports:
7-
- 8080:80
9+
- 8080:8080
810
environment:
911
YOURLS_DB_PASS: example
1012
YOURLS_SITE: https://example.com
1113
YOURLS_USER: example_username
1214
YOURLS_PASS: example_password
13-
1415
mysql:
1516
image: mysql
1617
restart: always
1718
environment:
1819
MYSQL_ROOT_PASSWORD: example
1920
MYSQL_DATABASE: yourls
21+
volumes:
22+
- db:/var/lib/mysql

yourls/content.md

Lines changed: 41 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,42 @@ YOURLS is a set of PHP scripts that will allow you to run Your Own URL Shortener
1010

1111
## Start a `%%IMAGE%%` server instance
1212

13-
```console
14-
$ docker run --name some-%%REPO%% --link some-mysql:mysql \
15-
-e YOURLS_SITE="https://example.com" \
16-
-e YOURLS_USER="example_username" \
17-
-e YOURLS_PASS="example_password" \
18-
-d %%IMAGE%%
13+
```bash
14+
docker run \
15+
--name some-%%REPO%% \
16+
--detach \
17+
--network some-network \
18+
--env YOURLS_SITE="https://example.com" \
19+
--env YOURLS_USER="example_username" \
20+
--env YOURLS_PASS="example_password" \
21+
%%IMAGE%%
1922
```
2023

2124
The YOURLS instance accepts a number of environment variables for configuration, see *Environment Variables* section below.
2225

23-
If you'd like to use an external database instead of a linked `mysql` container, specify the hostname and port with `YOURLS_DB_HOST` along with the password in `YOURLS_DB_PASS` and the username in `YOURLS_DB_USER` (if it is something other than `root`):
26+
If you'd like to use an external database instead of a `mysql` container, specify the hostname and port with `YOURLS_DB_HOST` along with the password in `YOURLS_DB_PASS` and the username in `YOURLS_DB_USER` (if it is something other than `root`):
2427

25-
```console
26-
$ docker run --name some-%%REPO%%s -e YOURLS_DB_HOST=10.1.2.3:3306 \
27-
-e YOURLS_DB_USER=... -e YOURLS_DB_PASS=... -d %%IMAGE%%
28+
```bash
29+
docker run \
30+
--name some-%%REPO%% \
31+
--detach \
32+
--env YOURLS_DB_HOST=... \
33+
--env YOURLS_DB_USER=... \
34+
--env YOURLS_DB_PASS=... \
35+
%%IMAGE%%
2836
```
2937

3038
## Connect to the YOURLS administration interface
3139

3240
If you'd like to be able to access the instance from the host without the container's IP, standard port mappings can be used:
3341

34-
```console
35-
$ docker run --name some-%%REPO%% --link some-mysql:mysql -p 8080:80 -d %%IMAGE%%
42+
```bash
43+
docker run \
44+
--name some-%%REPO%% \
45+
--detach \
46+
--network some-network \
47+
--publish 8080:8080 \
48+
%%IMAGE%%
3649
```
3750

3851
Then, access it via `http://localhost:8080/admin/` or `http://<host-ip>:8080/admin/` in a browser.
@@ -41,7 +54,7 @@ Then, access it via `http://localhost:8080/admin/` or `http://<host-ip>:8080/adm
4154

4255
## Environment Variables
4356

44-
When you start the `yourls` image, you can adjust the configuration of the YOURLS instance by passing one or more environment variables on the `docker run` command line.
57+
When you start the `yourls` image, you can adjust the configuration of the YOURLS instance by passing one or more environment variables on the `docker run` command-line.
4558
The YOURLS instance accepts [a number of environment variables for configuration](https://yourls.org/docs/guide/essentials/configuration).
4659
A few notable/important examples for using this Docker image include the following.
4760

@@ -86,22 +99,32 @@ Database tables prefix, defaults to `yourls_`. Only set this when you need to ov
8699

87100
As an alternative to passing sensitive information via environment variables, `_FILE` may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. In particular, this can be used to load passwords from Docker secrets stored in `/run/secrets/<secret_name>` files. For example:
88101

89-
```console
90-
$ docker run --name some-%%REPO%% -e YOURLS_DB_PASS_FILE=/run/secrets/mysql-root ... -d %%IMAGE%%:tag
102+
```bash
103+
docker run \
104+
--name some-%%REPO%% \
105+
--detach \
106+
--env YOURLS_DB_PASS_FILE=/run/secrets/mysql-root \
107+
%%IMAGE%%
91108
```
92109

93110
Currently, this is supported for `YOURLS_DB_HOST`, `YOURLS_DB_USER`, `YOURLS_DB_PASS`, `YOURLS_DB_NAME`, `YOURLS_DB_PREFIX`, `YOURLS_SITE`, `YOURLS_USER`, and `YOURLS_PASS`.
94111

95112
## %%COMPOSE%%
96113

97-
Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080/admin/` or `http://<host-ip>:8080/admin/` (as appropriate).
114+
Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080/admin/`, or `http://<host-ip>:8080/admin/` (as appropriate).
98115

99116
## Adding additional libraries / extensions
100117

101118
This image does not provide any additional PHP extensions or other libraries, even if they are required by popular plugins. There are an infinite number of possible plugins, and they potentially require any extension PHP supports. Including every PHP extension that exists would dramatically increase the image size.
102119

103120
If you need additional PHP extensions, you'll need to create your own image `FROM` this one. The [documentation of the `php` image](https://github.com/docker-library/docs/blob/master/php/README.md#how-to-install-more-php-extensions) explains how to compile additional extensions.
104121

105-
The following Docker Hub features can help with the task of keeping your dependent images up-to-date:
122+
## Include persistent user-content
106123

107-
- [Automated Builds](https://docs.docker.com/docker-hub/builds/) let Docker Hub automatically build your Dockerfile each time you push changes to it.
124+
Mount the volume containing your plugins, pages or languages to the proper directory; and then apply them through the "admin" UI. Ensure read/write/execute permissions are in place for the user:
125+
126+
- Plugins go in a subdirectory in `/var/www/html/user/plugins/`
127+
- Pages go in a subdirectory in `/var/www/html/user/pages/`
128+
- Languages go in a subdirectory in `/var/www/html/user/languages/`
129+
130+
If you wish to provide additional content in an image for deploying in multiple installations, place it in the same directories under `/usr/src/yourls/` instead (which gets copied to `/var/www/html/` on the container's initial startup).

yourls/github-repo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
https://github.com/YOURLS/docker
1+
https://github.com/YOURLS/containers

0 commit comments

Comments
 (0)