You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			| 
				
					
						 | 
			2 years ago | |
|---|---|---|
| .gitignore | 2 years ago | |
| Dockerfile | 2 years ago | |
| README.md | 2 years ago | |
| app.py | 2 years ago | |
| b64.py | 2 years ago | |
| build.sh | 2 years ago | |
| init_db.py | 2 years ago | |
| models.py | 2 years ago | |
| requirements.txt | 2 years ago | |
| webpush.py | 2 years ago | |
		
			
				
				README.md
			
		
		
	
	py-push-server
Docker Compose Setup
version: '3.1'
services:
  endorser-push-server:
    container_name: 'endorser-push-server'
    image: endorser-push-server:1.0
    build:
        context: ./py-push-server
    volumes:
      - /docker-volumes/pwa-push-server/data:/app/instance/data
    restart: always
    networks:
      - phoenix-network
networks:
  phoenix-network:
    external: true
ON first run you need to:
docker network create phoenix-network