28 lines
		
	
	
		
			674 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			674 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| services:
 | |
|   db:
 | |
|     image: postgres:17.6
 | |
|     container_name: shortlink-rs-db
 | |
|     restart: unless-stopped
 | |
|     volumes:
 | |
|       - ./postgresdata:/var/lib/postgresql/data
 | |
|     environment:
 | |
|       - POSTGRES_USER=shortlink
 | |
|       - POSTGRES_PASSWORD=password
 | |
|       - POSTGRES_INITDB_ARGS=--encoding=UTF-8 --lc-collate=C --lc-ctype=C
 | |
|     deploy:
 | |
|       resources:
 | |
|         limits:
 | |
|           memory: 256M
 | |
| 
 | |
|   service:
 | |
|     image: git.vendetti.ru/andy/shortlink-rs:0.1.1
 | |
|     container_name: shortlink-rs-service
 | |
|     restart: unless-stopped
 | |
|     volumes:
 | |
|       - ./.env:/app/.env:ro
 | |
|     ports:
 | |
|       - "127.0.0.1:12121:3000"
 | |
|     deploy:
 | |
|       resources:
 | |
|         limits:
 | |
|           memory: 256M |