2021-05-02 12:02:40 +00:00
|
|
|
# DEV Compose file.
|
2021-05-02 12:54:57 +00:00
|
|
|
# For a production file see: README.md
|
2021-05-02 12:02:40 +00:00
|
|
|
|
2021-05-02 01:07:08 +00:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
|
|
|
memcached:
|
|
|
|
image: memcached:1-alpine
|
2021-12-20 23:15:04 +00:00
|
|
|
restart: unless-stopped
|
2022-02-28 23:53:34 +00:00
|
|
|
entrypoint: memcached -m 256M -I 128M
|
2021-05-02 01:07:08 +00:00
|
|
|
ports:
|
|
|
|
- 11211:11211
|
2021-05-02 11:53:48 +00:00
|
|
|
|
|
|
|
app:
|
|
|
|
build: .
|
2021-05-04 17:30:25 +00:00
|
|
|
depends_on:
|
|
|
|
- memcached
|
2021-12-22 13:56:33 +00:00
|
|
|
environment:
|
2022-02-28 23:53:34 +00:00
|
|
|
SIZE_LIMIT: 128M
|
2021-05-02 11:53:48 +00:00
|
|
|
ports:
|
2021-12-22 13:46:06 +00:00
|
|
|
- 80:5000
|