mirror of
				https://github.com/steveiliop56/tinyauth.git
				synced 2025-11-04 08:05:42 +00:00 
			
		
		
		
	* feat: add sqlite database for storing sessions * refactor: use db instance instead of service in auth service * fix: coderabbit suggestions
		
			
				
	
	
		
			31 lines
		
	
	
		
			936 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			936 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
services:
 | 
						|
  traefik:
 | 
						|
    container_name: traefik
 | 
						|
    image: traefik:v3.3
 | 
						|
    command: --api.insecure=true --providers.docker
 | 
						|
    ports:
 | 
						|
      - 80:80
 | 
						|
    volumes:
 | 
						|
      - /var/run/docker.sock:/var/run/docker.sock
 | 
						|
 | 
						|
  whoami:
 | 
						|
    container_name: whoami
 | 
						|
    image: traefik/whoami:latest
 | 
						|
    labels:
 | 
						|
      traefik.enable: true
 | 
						|
      traefik.http.routers.whoami.rule: Host(`whoami.example.com`)
 | 
						|
      traefik.http.routers.whoami.middlewares: tinyauth
 | 
						|
 | 
						|
  tinyauth:
 | 
						|
    container_name: tinyauth
 | 
						|
    image: ghcr.io/steveiliop56/tinyauth:v3
 | 
						|
    environment:
 | 
						|
      - APP_URL=https://tinyauth.example.com
 | 
						|
      - USERS=user:$$2a$$10$$UdLYoJ5lgPsC0RKqYH/jMua7zIn0g9kPqWmhYayJYLaZQ/FTmH2/u # user:password
 | 
						|
    volumes:
 | 
						|
      - ./data:/data
 | 
						|
    labels:
 | 
						|
      traefik.enable: true
 | 
						|
      traefik.http.routers.tinyauth.rule: Host(`tinyauth.example.com`)
 | 
						|
      traefik.http.middlewares.tinyauth.forwardauth.address: http://tinyauth:3000/api/auth/traefik
 |