add portainer to production

This commit is contained in:
root
2026-05-22 12:18:49 -04:00
parent 72f2a13574
commit 3e856e093d
3 changed files with 30 additions and 0 deletions
+1
View File
@@ -3,6 +3,7 @@ ACME_EMAIL=rentaldrivego@gmail.com
API_DOMAIN=api.rentaldrivego.ma API_DOMAIN=api.rentaldrivego.ma
PUBLIC_SITE_DOMAIN=rentaldrivego.ma PUBLIC_SITE_DOMAIN=rentaldrivego.ma
PGMANAGE_DOMAIN=pgmanage.rentaldrivego.ma PGMANAGE_DOMAIN=pgmanage.rentaldrivego.ma
PORTAINER_DOMAIN=portainer.rentaldrivego.ma
# ── Optional prebuilt image source ──────────────────────────────────────────── # ── Optional prebuilt image source ────────────────────────────────────────────
# Used for pull-based deployments. CI injects APP_IMAGE and APP_VERSION # Used for pull-based deployments. CI injects APP_IMAGE and APP_VERSION
+2
View File
@@ -9,6 +9,8 @@ services:
- "8000:8000" - "8000:8000"
environment: environment:
PGMANAGE_LISTEN_PORT: "8000" PGMANAGE_LISTEN_PORT: "8000"
PGMANAGE_DEFAULT_USERNAME: ${PGMANAGE_DEFAULT_USERNAME:-admin}
PGMANAGE_DEFAULT_PASSWORD: ${PGMANAGE_DEFAULT_PASSWORD:-admin}
extra_hosts: extra_hosts:
- "host.docker.internal:host-gateway" - "host.docker.internal:host-gateway"
volumes: volumes:
+27
View File
@@ -0,0 +1,27 @@
name: rentaldrivego-portainer-prod
services:
portainer:
image: portainer/portainer-ce:lts
command: -H unix:///var/run/docker.sock
restart: unless-stopped
networks:
- traefik-proxy
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer_prod_data:/data
labels:
- traefik.enable=true
- traefik.http.routers.portainer.rule=Host(`${PORTAINER_DOMAIN:-portainer.rentaldrivego.ma}`)
- traefik.http.routers.portainer.entrypoints=websecure
- traefik.http.routers.portainer.tls=true
- traefik.http.routers.portainer.tls.certresolver=letsencrypt
- traefik.http.routers.portainer.service=portainer-svc
- traefik.http.services.portainer-svc.loadbalancer.server.port=9000
networks:
traefik-proxy:
external: true
volumes:
portainer_prod_data: