Skip to content

Commit

Permalink
fix: improve japanese translation
Browse files Browse the repository at this point in the history
fix: improve traditional chinese translation
fix: improve czech translation
fix: setting pgid and puid for the container
  • Loading branch information
Miguel Ribeiro committed Jan 28, 2025
1 parent a838a3f commit 634b34f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,10 @@ See instructions to run Wallos below.
```bash
docker run -d --name wallos -v /path/to/config/wallos/db:/var/www/html/db \
-v /path/to/config/wallos/logos:/var/www/html/images/uploads/logos \
-e TZ=Europe/Berlin -e PUID=82 -e PGID=82 -p 8282:80 --restart unless-stopped \
-e TZ=Europe/Berlin -p 8282:80 --restart unless-stopped \
bellamy/wallos:latest
```

Note: PUID and PGUID are optional, defaults to 82. Will let you run as an arbitrary user.

### Docker Compose

```
Expand All @@ -131,9 +129,6 @@ services:
- "8282:80/tcp"
environment:
TZ: 'America/Toronto'
# PUID and PGUID are optional, defaults to 82. Will let you run as an arbitrary user.
# PUID: 82
# PGID: 82
# Volumes store your data between container upgrades
volumes:
- './db:/var/www/html/db'
Expand Down
2 changes: 1 addition & 1 deletion includes/version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
$version = "v2.45.0";
$version = "v2.45.1";
?>

0 comments on commit 634b34f

Please sign in to comment.