Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ast21/l80.ru
https://github.com/ast21/l80.ru
Last synced: about 9 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/ast21/l80.ru
- Owner: ast21
- Created: 2022-06-23T00:39:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-18T06:57:54.000Z (11 months ago)
- Last Synced: 2024-12-10T20:20:13.800Z (about 2 months ago)
- Language: PHP
- Size: 6.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Laravel this backend l80.ru
### Build and push
```shell
docker build -t breakhack/l80.ru .
docker push breakhack/l80.ru
```### Run in server
```shell
HOST=l80.ru
docker pull breakhack/l80.ru:latest
docker rm -f $HOST
docker run -d \
--restart always \
--name $HOST \
-v app:/var/www/html/storage/app \
-e VIRTUAL_HOST=$HOST \
-e LETSENCRYPT_HOST=$HOST \
breakhack/l80.ru:latest
docker network connect front $HOST
docker network connect databases $HOST
docker restart $HOST
```