Skip to content

Commit

Permalink
basic docker-compose for running the project together with memcached
Browse files Browse the repository at this point in the history
  • Loading branch information
emillen committed Aug 22, 2020
1 parent 0646800 commit 0612ba0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -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:

0 comments on commit 0612ba0

Please sign in to comment.