mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-10 06:04:18 +00:00
d771c293df
* Added Docker Compose support for production * Added rate limiting to nginx
43 lines
697 B
YAML
43 lines
697 B
YAML
version: '2'
|
|
services:
|
|
cache:
|
|
image: redis:alpine
|
|
volumes:
|
|
- redis_data:/data
|
|
|
|
db:
|
|
image: postgres
|
|
environment:
|
|
POSTGRES_PASSWORD: 'pokemon'
|
|
POSTGRES_USER: 'ash'
|
|
POSTGRES_DB: 'pokeapi'
|
|
volumes:
|
|
- pg_data:/var/lib/postgresql/data
|
|
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: ./Resources/docker/app/Dockerfile
|
|
volumes:
|
|
- /code
|
|
links:
|
|
- db
|
|
- cache
|
|
|
|
web:
|
|
build:
|
|
context: ./Resources
|
|
dockerfile: ./docker/web/Dockerfile
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes_from:
|
|
- app:ro
|
|
links:
|
|
- app
|
|
|
|
volumes:
|
|
pg_data:
|
|
external: true
|
|
redis_data:
|
|
external: true
|