Last active
August 14, 2023 12:15
-
-
Save srikanthlogic/49d3dd76cf1117f775fdc5c9746cd091 to your computer and use it in GitHub Desktop.
Play Proxy compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
web: | |
image: ghcr.io/srikanthlogic/google-play-api:latest | |
hostname: playproxy | |
deploy: | |
replicas: 1 | |
resources: | |
limits: | |
memory: 2000M | |
restart_policy: | |
condition: on-failure | |
ports: | |
- "3000:3000" | |
expose: | |
- "3000" | |
networks: | |
- webnet | |
networks: | |
webnet: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment