basic docker-compose for running the project together with memcached

This commit is contained in:
emil-lengman 2020-08-22 17:33:40 +02:00
parent 064680003d
commit 0612ba001e
1 changed files with 19 additions and 0 deletions

19
docker-compose.yaml Normal file
View File

@ -0,0 +1,19 @@
version: '3.0'
services:
haste-server:
build: .
networks:
- db-network
environment:
- STORAGE_TYPE=memcached
- STORAGE_HOST=memcached
- STORAGE_PORT=11211
ports:
- 7777:7777
memcached:
image: memcached:latest
networks:
- db-network
networks:
db-network: