FichaFrontend/README.md
Sergey Karmanov e37f71bf2f
All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 10s
Create and publish a Docker image / Deploy image (push) Successful in 4s
Добавил автодеплой
2023-08-24 17:14:09 +03:00

25 lines
454 B
Markdown

# FichaFrontend
# Docker
```bash
docker run -d -p 85:80 \
--name FichaFrontend \
--restart=always \
-e TZ=Europe/Moscow \
git.zetcraft.ru/fichahackaton/fichafrontend:main
```
# Docker Compose
```yml
services:
sistemafrontend:
ports:
- '85:80'
container_name: FichaFrontend
restart: always
environment:
- TZ=Europe/Moscow
image: 'git.zetcraft.ru/fichahackaton/fichafrontend:main'
```