Files

25 lines
466 B
Markdown
Raw Permalink Normal View History

2023-12-24 13:27:50 +03:00
# CyberBloomFrontend
2023-12-22 15:29:56 +03:00
2023-12-24 13:27:50 +03:00
# Docker
2023-12-22 15:29:56 +03:00
2023-12-24 13:27:50 +03:00
```bash
docker run -d -p 80:80 \
--name CyberBloom \
--restart=always \
-e TZ=Europe/Moscow \
git.zetcraft.ru/cyberbloom/ogeetocasecybergarden:main
```
2023-12-22 15:29:56 +03:00
2023-12-24 13:27:50 +03:00
# Docker Compose
```yml
services:
cyberbloomfrontend:
ports:
- '80:80'
container_name: CyberBloom
restart: always
environment:
- TZ=Europe/Moscow
image: 'git.zetcraft.ru/cyberbloom/ogeetocasecybergarden:main'
```