Update docker-compose file with memcached

This commit is contained in:
Gabriel Augendre 2021-01-05 18:28:49 +01:00
parent c14a3f1b0d
commit a703cce21f
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4

View file

@ -15,6 +15,9 @@ services:
restart: on-failure
init: true
tty: true
depends_on:
- nginx
- memcached
nginx:
image: nginx:1.19.2
ports:
@ -23,8 +26,10 @@ services:
- staticfiles:/app/static
- media:/app/media
- ./docker/nginx-dev.conf:/etc/nginx/conf.d/default.conf
depends_on:
- django
memcached:
image: memcached:1.6.9
restart: always
command: ["memcached", "-m", "128"]
volumes:
staticfiles: {}