2021-05-02 12:02:40 +00:00
|
|
|
# DEV Compose file.
|
|
|
|
# For a production file see: ...
|
|
|
|
|
2021-05-02 01:07:08 +00:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
|
|
|
memcached:
|
|
|
|
image: memcached:1-alpine
|
|
|
|
entrypoint: memcached -m 128
|
|
|
|
ports:
|
|
|
|
- 11211:11211
|
2021-05-02 11:53:48 +00:00
|
|
|
|
|
|
|
app:
|
|
|
|
build: .
|
|
|
|
ports:
|
|
|
|
- 80:5000
|