- 6 docs racine (README, HANDOVER, ARCHITECTURE, DECISIONS, INSTALL, OPERATIONS) - 9 docs thématiques dans docs/ - 10 templates docker-compose dans configs/ - 7 scripts Python/Shell d'import Furious vers Zitadel - 2 matrices RBAC Etat infra au 5 juin 2026 : - 88 users Furious importes dans Zitadel - 8 roles RBAC crees et attribues - Intranet filtre les cartes selon role (Approche A) - 7 outils SSO operationnels
23 lines
555 B
Plaintext
23 lines
555 B
Plaintext
services:
|
|
code-server:
|
|
image: lscr.io/linuxserver/code-server:latest
|
|
container_name: code-server
|
|
restart: unless-stopped
|
|
environment:
|
|
PUID: 1000
|
|
PGID: 1000
|
|
TZ: Europe/Paris
|
|
# Mdp fallback si SSO down (normalement on accède via SSO)
|
|
PASSWORD: ${CODE_PASSWORD}
|
|
SUDO_PASSWORD: ${CODE_PASSWORD}
|
|
DEFAULT_WORKSPACE: /config/workspace
|
|
volumes:
|
|
- ./config:/config
|
|
networks:
|
|
- web
|
|
# ⚠️ Pas de labels Traefik : OAuth2-Proxy expose le host
|
|
|
|
networks:
|
|
web:
|
|
external: true
|