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