ci/cd
This commit is contained in:
parent
20123ffa98
commit
13f6db18f2
7 changed files with 124 additions and 4 deletions
20
docker-compose.yml
Normal file
20
docker-compose.yml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
services:
|
||||
asxpio:
|
||||
# Image will be dynamically updated during deployment
|
||||
# Format: registry.example.com/user/czsk:sha_tag
|
||||
image: nginx:alpine
|
||||
container_name: asxpio
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- traefik
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.asxpio.rule=Host(`asxp.io`) || Host(`www.asxp.io`)"
|
||||
- "traefik.http.routers.asxpio.entrypoints=websecure"
|
||||
- "traefik.http.routers.asxpio.tls=true"
|
||||
- "traefik.http.routers.asxpio.tls.certresolver=letsencrypt"
|
||||
- "traefik.http.services.asxpio.loadbalancer.server.port=80"
|
||||
|
||||
networks:
|
||||
traefik:
|
||||
external: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue