Skip to content

Commit a36a930

Browse files
committed
docs: minor improvements
1 parent 43ecca7 commit a36a930

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

adminforth/documentation/blog/2025-02-19-compose-ec2-deployment-ci-registry/index.md renamed to adminforth/documentation/blog/2025-02-19-compose-ec2-deployment-github-actions-registry/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,15 @@ services:
8888
- "/var/run/docker.sock:/var/run/docker.sock:ro"
8989

9090
myadmin:
91-
image: ${MYADMIN_REPO}:latest
91+
image: localhost:5000/myadmin:latest
9292
build:
9393
context: ../adminforth-app
9494
tags:
95-
- ${MYADMIN_REPO}:latest
95+
- localhost:5000/myadmin:latest
9696
cache_from:
97-
- type=registry,ref=${MYADMIN_REPO}:cache
97+
- type=registry,ref=localhost:5000/myadmin:cache
9898
cache_to:
99-
- type=registry,ref=${MYADMIN_REPO}:cache,mode=max,compression=zstd,image-manifest=true,oci-mediatypes=true
99+
- type=registry,ref=localhost:5000/myadmin:cache,mode=max,compression=zstd,image-manifest=true,oci-mediatypes=true
100100

101101
pull_policy: always
102102
restart: always

adminforth/documentation/docs/tutorial/04-deploy.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,13 @@ docker run -p 3500:3500 \
3636
3737
Now open your browser and go to `http://localhost:3500` to see your AdminForth application running in Docker container.
3838

39+
## Automating deployments with CI
40+
41+
If you are looking for a professional way to deploy your AdminForth application, you can follow our blog post [how to deploy your AdminForth application with Terraform From GitHub actions](http://localhost:3000/blog/compose-aws-ec2-ecr-terraform-github-actions/)
42+
3943
## Adding SSL (https) to AdminForth
4044

41-
There are lots of ways today to put your application behind SSL gateway. You might simply put AdminForth instance behind free Cloudflare CDN,
42-
change 3500 port to 80 and Cloudflare will automatically add SSL layer and faster CDN for your application.
45+
There are lots of ways today to put your application behind SSL gateway. You might simply put AdminForth instance behind free Cloudflare CDN, change 3500 port to 80 and Cloudflare will automatically add SSL layer and faster CDN for your application.
4346

4447
However as a bonus here we will give you independent way to add free LetsEncrypt SSL layer to your AdminForth application.
4548

0 commit comments

Comments
 (0)