mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-12-22 08:16:28 +00:00
19 lines
275 B
YAML
19 lines
275 B
YAML
# DEV Compose file.
|
|
# For a production file see: README.md
|
|
|
|
version: '3.7'
|
|
|
|
services:
|
|
memcached:
|
|
image: memcached:1-alpine
|
|
entrypoint: memcached -m 128
|
|
ports:
|
|
- 11211:11211
|
|
|
|
app:
|
|
build: .
|
|
depends_on:
|
|
- memcached
|
|
ports:
|
|
- 80:5000
|